-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (72 loc) · 2.76 KB
/
Copy pathindex.html
File metadata and controls
75 lines (72 loc) · 2.76 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title>Atlas of Ancient Rome</title>
<meta
name="description"
content="Watch the Roman Empire rise and fall on an interactive map. Trace battles, roads, legions, emperors and the trade routes that bound an empire — from the founding of Rome in 753 BC to the fall of Constantinople in 1453 — twenty-two centuries on one timeline."
/>
<link rel="canonical" href="https://domdemetz.github.io/Ancient-Rome/" />
<!-- Open Graph / social share -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://domdemetz.github.io/Ancient-Rome/" />
<meta property="og:title" content="Atlas of Ancient Rome" />
<meta
property="og:description"
content="Watch the Roman Empire rise and fall on an interactive map. Battles, roads, legions, emperors and trade — from the founding of Rome to the fall of Constantinople, 753 BC to 1453 AD."
/>
<meta property="og:image" content="https://domdemetz.github.io/Ancient-Rome/og-image.png" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Atlas of Ancient Rome" />
<meta
name="twitter:description"
content="Watch the Roman Empire rise and fall on an interactive map. From the founding of Rome to the fall of Constantinople — 2,200 years of battles, roads and trade."
/>
<meta name="twitter:image" content="https://domdemetz.github.io/Ancient-Rome/og-image.png" />
</head>
<body>
<!-- pre-mount frame: the app opens on the house dark + a quiet wordmark
instead of a blank void while the bundle loads; React replaces it -->
<style>
html,
body {
background: #0a0a0c;
}
#boot {
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-family: Georgia, 'Times New Roman', serif;
font-style: italic;
letter-spacing: 0.3em;
text-transform: uppercase;
font-size: 13px;
color: #d9b45b;
animation: boot-breath 2.2s ease-in-out infinite;
}
@keyframes boot-breath {
0%,
100% {
opacity: 0.35;
}
50% {
opacity: 0.75;
}
}
@media (prefers-reduced-motion: reduce) {
#boot {
animation: none;
opacity: 0.6;
}
}
</style>
<div id="root"><div id="boot">Atlas of Ancient Rome</div></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>