-
Notifications
You must be signed in to change notification settings - Fork 76
/
apps.html
53 lines (49 loc) · 1.41 KB
/
apps.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
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OutRed | Apps</title>
<link rel="stylesheet" href="./styles/style.css" />
<!-- 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>
<h1 class="title">Apps</h1>
<br /><br />
<div class="apps"></div>
<br /><br />
</div>
<footer style="position: fixed; bottom: 0">
<a href="https://dsc.gg/outred" target="_blank"></a>
<p>© OutRed</p>
<a href="https://github.com/OutRed/v4" target="_blank"></a>
</footer>
<script src="/js/navbar.js"></script>
<script src="/js/apps.js"></script>
<script src="/js/resize-apps.js"></script>
</body>
</html>