-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.htm
74 lines (61 loc) · 2.93 KB
/
template.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="resources/favicon.png">
<title>TheBlueRuby - Template Page</title>
<meta name="description" content="A small website by TheBlueRuby">
<meta content="TheBlueRuby's Github Page - Template" property="og:title" />
<meta property="og:type" content="website">
<meta content="A small website by TheBlueRuby" property="og:description" />
<meta content="https://theblueruby.github.io/" property="og:url" />
<meta content="https://theblueruby.github.io/resources/banner.png" property="og:image" />
<meta content="#00BBFF" name="theme-color" />
</head>
<body>
<script src="https://code.jquery.com/jquery-3.6.1.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/themeswitcher.js"></script>
<h1 class="title">Page Template</h1>
<br>
<!--Dark Mode Button-->
<div class="darkmode-toggle form-check form-switch">
<input id="darkmode-toggler" class="darkmode-checkbox form-check-input" role="switch" type="checkbox" checked>
<label class="darkmode-label" for="darkmode-toggler">
Enable dark mode
</label>
</div>
<br>
<!--Navbar-->
<nav class="navbar navbar-expand">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">
<img src="resources/favicon.png" width="45" height="45" alt="Go to Homepage">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<ul class="navbar-nav">
<li class="nav-item"><a class="navbar-link" href="./index.html">Home</a></li>
<li class="nav-item"><a class="navbar-link" href="./art/">Art</a></li>
<li class="nav-item"><a class="navbar-link" href="posts/">Posts</a></li>
<li class="nav-item"><a class="navbar-link" href="./projects.html">Projects</a></li>
<li class="nav-item"><a class="navbar-link" href="./aboutme.html">About Me</a></li>
<li class="nav-item"><a class="navbar-link"
href="https://github.com/TheBlueRuby/theblueruby.github.io/">Source</a></li>
</ul>
</div>
</div>
</nav>
<br>
<!--Content goes here!-->
<p>Just a webpage template, nothing interesting!</p>
</body>
</html>