summaryrefslogtreecommitdiff
path: root/templates/template.html.j2
blob: 8a8a9fbd338e8d774b61f4165a68274ffde32d43 (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
<!doctype html>
<html lang="en">
    <head>
        <link rel='stylesheet' href="static/style.css">
        <link rel="icon" type="image/png" href="static/images/favicon-32x32.png" sizes="32x32" />
        <link rel="icon" type="image/png" href="static/images/favicon-16x16.png" sizes="16x16" />
        <title>cafebabe.gay :: {{title}}</title>

        <meta content="{{title}}" property="og:title" />
        <meta content="https://cafebabe.gay" property="og:url" />
    </head>
    <body>
        <div id="wrapper">
            <header>
                <div id="headerflex">
                    <div id="headers">
                        <a href="/" id="the_title"><h1>{{ title }}</h1></a>
                        <nav id="navbar">
                            <ul>
                                {% for name, link in articles %}
                                <li>
                                    <a href="{{link}}">{{name}}</a>
                                </li>
                                {% endfor %}
                            </ul>
                        </nav>
                    </div>
                </div>
            </header>
            <div id="content">
                {% block content %}
                {% endblock %}
            </div>
            <footer>
                <p>This website does not contain any javascript and will always remain javascript-free.</p>
                <div id="footer_banners">
                    <p>
                        <a href="https://jigsaw.w3.org/css-validator/check/referer">
                            <img style="border:0;width:88px;height:31px"
                                 src="static/images/vcss-blue.gif"
                                 alt="Valid CSS!" />
                        </a>
                    </p>
                    <a href="https://www.debian.org/">
                        <img src="static/images/powerdebian.gif" alt="Powered By Debian">
                    </a>
                </div>
            </footer>
        </div>
    </body>
</html>