-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtools.html
63 lines (63 loc) · 2.58 KB
/
tools.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
<!DOCTYPE html>
<html>
<head>
<title>CBSC</title>
<meta name="description" content="Minecraft Information" />
<link rel="stylesheet" href="src/desktop.css" />
</head>
<body>
<div id="navbar">
<div class="navbutton" onclick="window.location.href='index.html'">
<a href="index.html"><i icon-name="home" class="icon"></i>Home</a>
</div>
<div class="navbutton" onclick="window.location.href='blog.html'">
<a href="blog.html"><i icon-name="newspaper" class="icon"></i>News</a>
</div>
<div class="navbutton" onclick="window.location.href='tools.html'">
<a href="tools.html"><i icon-name="package" class="icon"></i>Tools</a>
</div>
<div class="navbutton" onclick="window.location.href='smp.html'">
<a href="smp.html" id="mc"
><i icon-name="sword" class="icon"></i>Minecraft</a
>
</div>
<div class="navbutton" onclick="window.location.href='clubs.html'">
<a href="clubs.html"
><i icon-name="users" class="icon"></i>Join a Club!</a
>
</div>
</div>
<div
id="titlebox"
style="background-image: url(/img/CB.png); background-position-x: center"
>
<h1 style="color: #dedede">Tools, tips and guides for Students of Colonel By</h1>
<div id="directory"></div>
</div>
<h1 style="text-align: center;">This Section is under Construction currently as we are choosing and compiling a list of tools and guides for students. If you want to help out, please reach out on the Colonel By Discord Server</h1>
<div class="boxList">
<div class="box" style="width: 50%;"><h2>Tools for in school and out</h2>
<h3>As always, the <a href="https://ocdsb.elearningontario.ca/d2l/home" target="_blank">OCDSB student portal</a> contains useful links and resources for students in school and out </h3>
<h3>Under Construction</h3>
</div>
<div class="box" style="width: 50%;"><h2>Guides and information</h2></div>
</div>
<script src="https://unpkg.com/lucide@latest"></script>
<script>
lucide.createIcons();
</script>
<script>
var theme = document.getElementsByTagName("link")[0];
if (
navigator.userAgent.match(/Android/i) ||
navigator.userAgent.match(/iPhone/i)
) {
theme.setAttribute("href", "src/mobile.css");
console.log("Set CSS to Mobile");
} else {
theme.setAttribute("href", "src/desktop.css");
console.log("Set CSS to Desktop");
}
</script>
</body>
</html>