-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (52 loc) · 1.63 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta
name="viewport"
content="width=device-width,initial-scale=1"
charset="utf-8"
/>
<title>Your Twitter Data</title>
<style>
@media screen and (min-width: 450px) {
#mobile-error {
display: none;
}
}
#manifest-error {
display: none;
}
</style>
<link rel="icon" href="./assets/images/favicon.ico" />
</head>
<body>
<div id="root"></div>
<div id="manifest-error">
<h3>Something went wrong, but don’t fret — let’s give it another shot</h3>
<p>
You need to unzip your entire archive, not just individual folders, in
order to view them here. If you keep experiencing errors, please
<a href="https://help.twitter.com/forms/privacy" target="_blank"
>fill out this form.</a
>
</p>
</div>
<div id="mobile-error">
<h3>Your archive isn’t available here.</h3>
<p>
You need to view this on a desktop browser in order to see your archive.
</p>
</div>
<script>
function showManifestError() {
document.getElementById("root").style.display = "none";
document.getElementById("manifest-error").style.display = "block";
}
</script>
<script src="./data/manifest.js" onerror="showManifestError()"></script>
<script src="assets/js/runtime.e7f6b883530e20ed7efb.js"></script>
<script src="assets/js/modules.9072ed6e90fe38c485fe.js"></script>
<script src="assets/js/i18n.e27e67d39fcc91627cab.js"></script>
<script src="assets/js/main.f82f671c9445e6ed2652.js"></script>
</body>
</html>