blob: a6861928ca295617c4dba74d8828ef4e2e3d34f2 (
plain)
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
|
<!doctype html>
<html lang="en">
<head>
<!-- Meta Tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="{{ title }}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://delta.twoexem.com" />
<meta property="og:description" content="{{ description }}" />
<meta name="theme-color" content="#ecb256" />
<title>{{ title }} - darkuss' website</title>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/assets/icons/favicon-16x16.png" />
<!-- Stylesheets -->
{{ styles }}
<!-- Scripts -->
{{ scripts }}
</head>
<body>
<div id="deco">
<div id="rainbow"></div>
<div id="triangles"></div>
</div>
<div id="upper">
<nav>
<ul>
{{ generate_nav }}
</ul>
</nav>
<div>
<main><div>{{ content }}</div></main>
<footer class="subtle">
<span>made with <span style="color: var(--red)"><3</span> by darkuss</span><span><a href="/credits.html">credits</a></span
><span>last modified: <time datetime="{{ current_date }}">{{ current_date }}</time></span>
</footer>
</div>
</div>
</body>
</html>
|