-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 2.13 KB
/
Copy pathindex.html
File metadata and controls
43 lines (43 loc) · 2.13 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Charon</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/katex.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top shadow">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="#/">
<span id="site-name" class="ms-2">Charon</span>
</a>
<div id="nav-links" class="d-flex ms-auto"></div>
</div>
</nav>
<div id="main-logo-container" class="container text-center my-5 d-none">
<img id="logo-main" src="" alt="Logo principale" class="img-fluid" style="max-height: 250px;">
</div>
<div class="container d-none" id="tag-filter-container">
<div class="d-flex justify-content-center flex-wrap" id="tag-filter"></div>
</div>
<main class="container my-5" id="app-content"></main>
<footer id="main-footer" class="py-4">
<hr>
<div class="container text-center" id="footer-content"></div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/katex.min.js"></script>
<script src="js/site.js"></script>
<script src="data/post.js"></script>
<script src="data/pages.js"></script>
<script src="js/app.js"></script>
</body>
</html>