-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.html
55 lines (54 loc) · 3.08 KB
/
notes.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
<!DOCTYPE html>
<html data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Riigess - Projects</title>
<script src="https://kit.fontawesome.com/15181efa86.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/notes-index.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid" style="text-align: left">
<div style="width:0.8rem"></div> <!-- Build a margin for the logo so it's consistent and not in the absolute corner of everything -->
<a href="https://riigess.com" class="navbar-brand"><img src="images/Riigess-web-logo@0.25x.png" width="30"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a href="https://riigess.com/projects" class="nav-link">Projects</a>
</li>
</ul>
<ul class="navbar-nav">
<li class="nav-item justify-content-end">
<a><img src="https://uxwing.com/wp-content/themes/uxwing/download/nature-and-environment/moon-icon.png" width="30" id="btnSwitch" onclick="changeImage()"></a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-12 col-md-2 vertical-center">
<ul style="width: 100%; padding-left: 0;">
<li class="list-links" id="prog-c" onclick="console.debug('test-C');">C</li>
<li class="list-links" id="prog-cpp" onclick="console.debug('test-C++')">C++</li>
<li class="list-links" id="prog-java" onclick="console.debug('test-java')">Java</li>
<li class="list-links" id="prog-python" onclick="console.debug('test-python')">Python</li>
</ul>
</div>
<div class="col-12 col-md-10 d-none d-md-block" id="content-view">
Test
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="scripts/notes.js"></script>
<script src="scripts/index.js" integrity="sha384-rqh1Yd/yuw34RC7EGgkkCeIlC/kOn5gj9lBIvVEh4aWXce5AVP0QWFDnJg8YxlDb"></script>
</body>
</html>