summaryrefslogtreecommitdiff
path: root/main/templates/main_base.html.j2
blob: fea8660787ff40c8cb9db5e87c97e798c217cd2c (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
{% extends "base.html.j2" %}
{% block page_title %}{{ main.main_name }}{% endblock %}
{% block og_page_title %}{{ main.main_name }}{% endblock %}
{% block head_extra %}{{ super() }}
    <link rel="stylesheet" href="{{ site.assets_path }}/css/main.css" />{% endblock %}
{% block body %}<canvas id="canvas_bg" class="canvas_bg"></canvas>
<div class="bootstrap-wrapper">
    <div class="container">
        <div class="row">
            <div class="col-md-9 navbar_main">
                {{ super() }}
            </div>
        </div>
        <div class="row">
            <main class="col-md-9">
                <p>This is page is work in progress. Meanwhile check my stuff on the navbar at the top of the page.</p>
                <h2 style="color: #dddddd; text-align: center">Visit these sites, they have way cooler (and more finished) webpages than me:</h2>
                <div align="center">
                    <a href="https://www.tar.dev/" target="_blank"><img src="/assets/image/neighbors/tarandir.gif" alt="tar.dev" title="tar.dev" style="width:88px;height:31px;"></a>
                    <br>
                    <p>A way cooler neighbor page coming soon... (I swear.)</p>
                </div>
                <h2 style="color: #dddddd; text-align: center">Fanlistings I'm part of:</h2>
                <div align="center">
                    <a href="http://fan.after-death.org/crows" target="_blank"><img src="/assets/image/fanlisting/crows.png" alt="http://fan.after-death.org/crows" title="http://fan.after-death.org/crows" style="width:50px;height:50px;"></a>
                </div>
            </main>
        </div>
    </div>
</div>
<footer>
    <script src="/assets/js/main.js"></script>
</footer>{% endblock %}