summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: a4974b4ec9b963000ccf0777642600c2f5242899 (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
56
57
58
59
60
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>