aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: fa98dbd69a26a4a615a9d4403882c87accc1e645 (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
<!DOCTYPE html>
<html lang="en">
    <title>{{ domain }}/{{ title }}</title>
    <head>
        <base target="_blank">
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <meta name="description" content="a homepage run by an idiot,
        full of sound and fury, signifying nothing."/>
        <meta name="keywords" content="HTML, web, servers, linux, bsd,
        hacking, forensics, tor, anonymity, internet, society, luddite,
        futurism, lulz, fun, poetry, games, vidya, thoughts, random,
        homepage, email server, web server, sound, fury, shakespeare,
        nothing, writing, audio, classical music, video game music,
        mjfernez, mjfernet, mike, fernez, mikefernez, michael"/>
        <meta name="author" content="mjfernez">
        <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
        {% block css%}
        <link rel="stylesheet" type="text/css" href="/static/main.css">
        <link rel="icon" href="/favicon.ico">
        {% endblock %}
    </head>
    <body><center>
        <h1><a href="/" target="_self">{{ domain }}</a></h1>
        <!-- navbar -->
        <div class="navbar">
        <b>|</b> <!-- This makes the bar symmetrical -->
        {% for dir in navbar %}
        <b> <a href="/{{ dir }}" target="_self">{{ dir }}/</a> |</b>
        {% endfor %}
        <!-- Add icons here -->
        <a href="/feed.xml" target="_blank" rel="noopener noreferrer">
    <img class="icon" src="/static/rss.svg"></a>&nbsp;
        <a href="mailto:mjf@mjfer.net"><img class="icon" src="/static/email.svg"></a>
        </div>
        <h2 class="center">{{ title }}</h2>
        <div class="content">
            {% block content %}
            {% endblock %}
            <h3 class="center">{{ errors }}</h3>
            {% if parent_dir  %}
            <h3 class="center"><a href="{{ parent_dir }}">Go up to parent folder ({{ parent_dir }})</a></h3>
            {% endif %}
        </div>
        {% if last_update %}
        <p>Last update: {{ last_update }}</p>
        {% endif %}
        <div class="license">{% include 'site/license.html' %}</div>
        </center></body>
</html>