-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (110 loc) · 4.9 KB
/
index.html
File metadata and controls
116 lines (110 loc) · 4.9 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en" class="theme-dark">
<head>
<meta charset="utf-8"/>
<link rel="icon" href="/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="theme-color" content="#000000"/>
<meta
name="description"
content="Return of Reckoning Kill Board"
/>
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/manifest.json"/>
<!-- Start Single Page Apps for GitHub Pages -->
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// MIT License
// https://github.com/rafgraph/spa-github-pages
// This script checks to see if a redirect is present in the query string,
// converts it back into the correct url and adds it to the
// browser's history using window.history.replaceState(...),
// which won't cause the browser to attempt to load the new url.
// When the single page app is loaded further down in this file,
// the correct url will be waiting in the browser's history for
// the single page app to route accordingly.
(function (l) {
if (l.search[1] === '/') {
var decoded = l.search.slice(1).split('&').map(function (s) {
return s.replace(/~and~/g, '&')
}).join('?');
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + decoded + l.hash
);
}
}(window.location))
</script>
<!-- End Single Page Apps for GitHub Pages -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QJ9VX08435"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QJ9VX08435');
</script>
<title>Kill Board</title>
</head>
<body class="has-navbar-fixed-top">
<nav class="navbar is-fixed-top">
<div class="navbar-menu">
<div class="navbar-start" style="flex-grow: 1; justify-content: center;">
<a class="navbar-item" href="https://www.returnofreckoning.com/">
<i class="has-text-grey fas fa-sm fa-home"></i>
Home
</a>
<a class="navbar-item" href="https://www.returnofreckoning.com/join.php#download">
<i class="has-text-grey fas fa-sm fa-cloud-download-alt"></i>
Download game
</a>
<a class="navbar-item" href="https://www.returnofreckoning.com/forum/">
<i class="has-text-grey fas fa-sm fa-comments"></i>
Forum
</a>
<a class="navbar-item" href="https://wiki.returnofreckoning.com">
<i class="has-text-grey fab fa-sm fa-wikipedia-w"></i>
Wiki
</a>
<a class="navbar-item" href="https://killboard.returnofreckoning.com">
<i class="has-text-grey fas fa-sm fa-ranking-star"></i>
Killboard
</a>
<a class="navbar-item" href="https://www.returnofreckoning.com/armory">
<i class="has-text-grey fas fa-sm fa-shield-alt"></i>
Armory
</a>
<a class="navbar-item" href="https://bugs.returnofreckoning.com/" target="_blank">
<i class="has-text-grey fas fa-sm fa-cog"></i>
Bugtracker
</a>
<a class="navbar-item" href="https://builder.returnofreckoning.com" target="_blank">
<i class="has-text-grey fas fa-sm fa-gavel fa-flip-horizontal"></i>
Career builder
</a>
<a class="navbar-item" href="https://www.returnofreckoning.com/about">
<i class="has-text-grey fas fa-sm fa-question"></i>
About
</a>
<a class="navbar-item" href="https://discord.gg/returnofreckoning">
<i class="has-text-grey fab fa-sm fa-discord"></i>
</a>
<a class="navbar-item" href="https://www.facebook.com/returnofreckoning">
<i class="has-text-grey fab fa-sm fa-facebook-f"></i>
</a>
<a class="navbar-item" href="https://twitter.com/WAR_RoR">
<i class="has-text-grey fab fa-sm fa-twitter"></i>
</a>
<a class="navbar-item" href="https://www.youtube.com/channel/UC1KHAWDQvsyOXIF12wUMFPQ">
<i class="has-text-grey fab fa-sm fa-youtube"></i>
</a>
</div>
</div>
</nav>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>