summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: c6d23fcf344ff058d4367633d55c53efcc87de6d (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
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">

<meta name="viewport" content="width=device-width, initial-scale=1">
<!--- Instructions for web scrapers --->
<meta name="robots" content="index, follow">
<meta name="description" content="Some IT, scientific and electronic projects; self-hosted solutions.">
<meta name="keywords" content="self-hosting, IT, electronics, embedded C, FPGA">
<meta name="author" content="eqkter">

<head>
  <meta charset="utf-8">
  {% if page.title %}
  <title>{{ page.title }}</title>
  {% else %}
  <title>AARAVOS</title>
  {% endif %}  
  <link href="/css/style.css?v=1.0.0" 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="https://git.eqkter.org/">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" target="_blank" alt="Edited with Vim">
        <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.git">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>