-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
45 lines (43 loc) · 1.48 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
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<!-- This is just loading the title first -->
<script>
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var Link = JSON.parse(this.responseText);
// Please do not remove this! This is part of the atribution required!
document.title = Link.display + " | Ulink";
}
};
xmlhttp.open("GET", "config/config.json", true);
xmlhttp.send();
</script>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Style selector -->
<link rel="stylesheet" href="styles/image.css" />
<link rel="stylesheet" href="styles/standard.css" />
<!-- Icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>Ulink | Loading...</title>
</head>
<body>
<div id="head">
</div>
<center id="social"></center>
<div id="links"></div>
<p id="Attribution" class="atr"></p>
<script src="js/icons.js"></script>
<script src="js/link.js"></script>
<script src="js/style.js"></script>
</body>
</html>