summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html61
1 files changed, 61 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..a4974b4
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,61 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+ <meta charset="utf-8">
+ {% if page.title %}
+ <title>{{ page.title }}</title>
+ {% else %}
+ <title>AARAVOS</title>
+ {% endif %}
+ <link href="/css/style.css" rel="stylesheet"/>
+</head>
+
+<body>
+ <header>
+ <h1>Alexis <span>Draussin</span></h1>
+ <nav>
+ <a href="/">Home</a>
+ <a href="/about">About</a>
+ <a href="/projects">Projects</a>
+ <a href="/cv">Résumé</a>
+ <a href="https://git.eqkter.org/explore/">git.eqkter.org</a>
+ </nav>
+ <hr>
+ </header>
+ <section class="section">
+ <div class="container">
+ {% block content %} {% endblock %}
+ </div>
+ </section>
+ <hr>
+ <footer>
+ <nav>
+ <img src="/images/link-buttons/vim.gif">
+ <a href="https://landchad.net" target="_blank">
+ <img src="/images/link-buttons/landchad.gif" target="_blank" alt="landchad.net">
+ </a>
+ <a href="https://www.debian.org" target="_blank">
+ <img src="/images/link-buttons/debian.gif" target="_blank" alt="freebsd.org">
+ </a>
+ <a href="https://sadgrl.online/" target="_blank">
+ <img src="/images/link-buttons/sadgrl.gif" alt="sadgrl.online">
+ </a>
+ <a href="https://bugswriter.com/" target="_blank">
+ <img src="/images/link-buttons/bugs.gif" alt="bugswriter.org">
+ </a>
+ <a href="http://cyber.dabamos.de/88x31/" target="_blank">
+ <img src="/images/link-buttons/88x31.gif" alt="cyber.dabamos.de/88x31/">
+ </a>
+ </nav><br>
+ <span>
+ Site content <a href="/LICENCE">CC-BY-NC-SA-4.0</a> Alexis Draussin 2022-2023 (<a href="https://git.eqkter.org/eqkter/website">view source</a>)<br>
+ Contact: <a href="mailto:eqkter@protonmail.com">eqkter@protonmail.com</a><br><br>
+ Made with basic CSS, <a href="https://www.getzola.org">Zola</a>, and without JS or trackers <br><br>
+ <a href="http://4tuvmbxqxk7rabcs3bojomnxaaty37hvhy2dvikemun4qx3myqv5lzqd.onion" target="_blank">Anonymous on Tor</a><br>
+ </span>
+ </footer>
+</body>
+<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
+<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
+</html>