blob: 4753dfd8522d148c12402a31761988318919bbbb (
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
47
48
49
50
51
52
53
54
55
|
<!doctype html>
<html lang="en">
<head>
<link rel='stylesheet' href="{{ prefix }}styles/style.css">
<link rel="icon" type="image/png" href="{{ prefix }}images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="{{ prefix }}images/favicon-16x16.png" sizes="16x16" />
<title>cafebabe.gay :: {{ title }}</title>
<meta content="{{ title }}" property="og:title" />
<meta content="https://cafebabe.gay" property="og:url" />
</head>
<body>
<div id="wrapper">
<header>
<div id="headerflex">
<div id="headers">
<a href="/" id="the_title"><h1>{{ title }}</h1></a>
<nav id="navbar">
<ul>
<li>
<a href="{{ prefix }}index.html">home</a>
</li>
<li>
<a href="{{ prefix }}thoughts.html">thoughts</a>
</li>
<li>
<a href="{{ prefix }}about.html">about me</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<div id="content">
{% block content %}
{% endblock %}
</div>
<footer>
<p>This website does not contain any javascript and will always remain javascript-free.</p>
<div id="footer_banners">
<p>
<a href="https://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="{{ prefix }}images/vcss-blue.gif"
alt="Valid CSS!" />
</a>
</p>
<a href="https://www.debian.org/">
<img src="{{ prefix }}images/powerdebian.gif" alt="Powered By Debian">
</a>
</div>
</footer>
</div>
</body>
</html>
|