-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
40 lines (37 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portal 2 History Timeline</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<link rel="shortcut icon" href="https://wiki.portal2.sr/favicon.ico">
</head>
<body>
<div id="socials">
<a href="https://github.com/p2sr/p2sr-timeline" target="_blank" class="fa-brands fa-github"></a>
<a href="https://discord.com/invite/hRwE4Zr" target="_blank" class="fa-brands fa-discord"></a>
</div>
<h1 id="title"></h1>
<h2 id="subtitle"></h2>
<div id="timeline">
<div id="timeline-inner">
<div id="ages"></div>
<div id="dates">
<div class="text">
</div>
</div>
</div>
</div>
<div id="footer">
<span>Something's missing/incorrect? <a href="https://github.com/p2sr/p2sr-timeline/issues/new" target="_blank">Make an issue!</a></span>
</div>
<div id="footer2">
<button onclick="updateTimeline('p2')">P2SR History</button>
<button onclick="updateTimeline('lemon')">Lemon Skip History</button>
</div>
<div id="shadow"></div>
<script src="timeline.js"></script>
</body>
</html>