summaryrefslogtreecommitdiff
path: root/templates/template.html.j2
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2024-10-25 21:46:28 +0200
committeryuzu-eva <stevenhu@web.de>2024-10-25 21:46:28 +0200
commit15fc4c739ae07421c0ce1bed9fc05403312a2e86 (patch)
tree57654afde34a3974288d7e5a10f9e2a18d6f4d2d /templates/template.html.j2
parentc06148152be80a6536cfe59f7ffe7356bdf75f3c (diff)
added about page, changed css, added navbar
Diffstat (limited to 'templates/template.html.j2')
-rw-r--r--templates/template.html.j252
1 files changed, 46 insertions, 6 deletions
diff --git a/templates/template.html.j2 b/templates/template.html.j2
index 96f7f9d..4753dfd 100644
--- a/templates/template.html.j2
+++ b/templates/template.html.j2
@@ -2,14 +2,54 @@
<html lang="en">
<head>
<link rel='stylesheet' href="{{ prefix }}styles/style.css">
- <title>{{ title }}</title>
+ <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'>
- <div id='content'>
- {% block content %}
- {% endblock %}
- </div>
+ <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>