-
Notifications
You must be signed in to change notification settings - Fork 0
/
mirrorlist.html
81 lines (74 loc) · 3.05 KB
/
mirrorlist.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mirrorlist | Drunk Linux</title>
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif}
.w3-bar,h1,button {font-family: "Montserrat", sans-serif}
.fa-anchor,.fa-coffee {font-size:200px}
</style>
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-black w3-card w3-left-align w3-large">
<a class="w3-bar-item w3-button w3-hide-medium w3-hide-large w3-right w3-padding-large w3-hover-white w3-large w3-white" href="javascript:void(0);" onclick="myFunction()" title="Toggle Navigation Menu"><i class="fa fa-bars"></i></a>
<a href="https://drunklinux.tk" alt="index.html" class="w3-bar-item w3-button w3-padding-large w3-black">Home</a>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-black w3-hide w3-hide-large w3-hide-medium w3-large">
<a href="https://drunklinux.tk" alt="index.html" class="w3-bar-item w3-button w3-padding-large">Home</a>
</div>
</div>
<!-- Header -->
<header class="w3-container w3-black w3-center" style="padding:40px 16px">
</header>
<!-- First Grid -->
<div class="w3-row-padding w3-padding-64 w3-container w3-black">
<div class="w3-content">
<div class="w3-twothird">
<h1 style="color:lightgreen;"> Official </h1>
<hr><br><br>
<h4 style="color:gold;">Canada | x86_64</h4>
<ul>
<code>Currently Unavailable<br>$ http://git.n64.cc/Drunk-Distro/drunk-repo/raw/branch/main/$arch/</code>
</ul>
<h4 style="color:gold;">Switzerland | X86_64</h4>
<ul>
<code>$ https://git.it-kuny.ch/drunk/drunk-repo/-/raw/main/$arch/</code>
</ul>
</div>
</div>
</div>
<!-- Footer starting-->
<footer class="w3-container w3-padding-64 w3-black w3-center w3-opacity">
<div class="w3-xlarge w3-padding-32">
<h4>© DrunkLinux</h4>
<h1>Social Media</h1>
<a href="https://github.com/drunk-linux" class="fa fa-github w3-hover-opacity"></a>
<a href="https://git.it-kuny.ch/drunk" class="fa fa-gitlab w3-hover-opacity"></a>
<a href="https://t.me/drunk_distro" class="fa fa-telegram w3-hover-opacity"></a>
<a href="https://drunklinux.tk" class="fa fa-globe w3-hover-opacity"></a>
</div>
<!-- Footer end. -->
</footer>
<script>
// Used to toggle the menu on small screens when clicking on the menu button
function myFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
</body>
</html>