-
Notifications
You must be signed in to change notification settings - Fork 76
/
template.html
50 lines (47 loc) · 1.34 KB
/
template.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OutRed | Home</title>
<link rel="stylesheet" href="./styles/style.css" />
<script
src="https://kit.fontawesome.com/a076d05399.js"
crossorigin="anonymous"
></script>
<!-- PWA LINKS -->
<link rel="manifest" href="/assets/json/manifest.json" />
<meta name="theme-color" content="#6C0BA9" />
<link
id="favicon"
rel="shortcut icon"
href="/assets/favicon.png"
type="image/x-icon"
/>
<script src="js/tabcloak.js"></script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-B5MYT5J8LH"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-B5MYT5J8LH");
</script>
</head>
<body>
<div class="content">
<div id="navbar"></div>
</div>
<footer style="position: fixed; bottom: 0">
<a href="https://discord.gg/FB6NtPkfwY" target="_blank"></a>
<p>© OutRed</p>
<a href="https://github.com/OutRed/v4" target="_blank"></a>
</footer>
<script src="/js/navbar.js"></script>
</body>
</html>