forked from KripC2160/FindMeALinuxDistro
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
59 lines (55 loc) · 2.87 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Find Me a Distro</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="shortcut icon" type="image/png" href="img/randomdistrofavicon.png">
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body onload="changeButtonColor()">
<h1 class="BigTitle" id="BigTitle">Find me a Distro</h1>
<h3 class="smallerTitle">Discover a new distribution with a single click</h3>
<div class="darkmode">
<button id="dmbutton" onclick="dmchange()">
<img src="img/thememode.png" id="dmimg">
</button>
</div>
<div class="content">
<button id="random-button" onclick="clicked()">Find Me a Distro</button>
</div>
<div class="FMALDportal">
<span class="tip">You can choose specific variant of distributions you want to see using this option</span>
<button class="FMALDALL" id="FMALDALL" onclick="toggleDistro(1)">All</button>
<button class="FMALDDEBIAN" id="FMALDDEBIAN" onclick="toggleDistro(2)">DEBIAN</button>
<button class="FMALDARCH" id="FMALDARCH" onclick="toggleDistro(3)">ARCH</button>
<button class="FMALDGENTOO" id="FMALDGENTOO" onclick="toggleDistro(4)">GENTOO</button>
<button class="FMALDFEDORA" id="FMALDFEDORA" onclick="toggleDistro(5)">FEDORA</button>
<button class="FMALDSUSE" id="FMALDSUSE" onclick="toggleDistro(6)">SUSE</button>
<button class="FMALDSLACK" id="FMALDSLACK" onclick="toggleDistro(7)">SLACK</button>
<button class="FMALDBSD" id="FMALDBSD" onclick="toggleDistro(8)">BSD</button>
<button class="FMALDOTHER" id="FMALDOTHER" onclick="toggleDistro(9)">OTHER</button>
</div>
<div class="EOLsettings">
<span class="tip">Option for EOL (End Of Life) Distributions</span>
<button class="EOLoff" id="EOLoff" onclick="toggleEOL(2)">EOL Off</button>
<button class="EOLon" id="EOLon" onclick="toggleEOL(1)">EOL On</button>
<button class="EOLonly" id="EOLonly" onclick="toggleEOL(3)">EOL Only</button>
</div>
<footer>
<button class="GH" onclick="relocateGithubHome()">
<img src="img/GitHub_logo.png" width="50px" height="50px">
</button>
<button class="suggestions" onclick="relocateGithub()">Suggestions?</button>
<h2 class="creditsanddate">©
<script>
document.write(new Date().getFullYear());
</script>, This is a Fork of <a href="https://github.com/KripC2160/findmealinuxdistro">Find Me A Linux Distro Project by KripC</a>
</h2>
</footer>
<!-- Load scripts in correct order -->
<script src="js/handlelink.js"></script>
<script src="js/script.js"></script>
</body>
</html>