aboutsummaryrefslogtreecommitdiff
path: root/templates/web/base.html
blob: c41a5b2e24da1e344f917b67effb50c8648f6c83 (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
<!doctype html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, height=device-height, user-scalable=no, initial-scale=1.0"/>
        <title>{% block title %}{% endblock %}</title>
        <style>
            body {
              margin: 5% auto;
              background: #f2f2f2;
              color: #444444;
              font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
              font-size: 16px;
              line-height: 1.8;
              text-shadow: 0 1px 0 #ffffff;
              max-width: 73%;
            }
            footer { margin-top: 2em; }
            code {background: white;}
            a {border-bottom: 1px solid #444444; color: #444444; text-decoration: none;}
            a:hover {border-bottom: 0;}
            dl { display: grid; grid-template-columns: auto 1fr; }
            dt { font-weight: bold; }
        </style>
        {% block extraheader %}{% endblock %}
    </head>
    <body>
        {% block content %}{% endblock %}
        <footer>
            <small>
                <a href="/about.html">about</a>
                · Generated by
                <a href="https://git.sr.ht/~fabrixxm/lesanaweb">Lesana Web</a>
            </small>
        </footer>
    </body>
</html>