Home Download Direct linkSettings
Aa
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
Copy
{%- extends "base.html" -%}
{%- block title -%} Home {%- endblock -%}


{%- block content -%}

<h3 class="centered">Articles</h3>
{{ m.article_preview_block() }}

<hr>

<div class="centered-line-block">
    <a href="/stuff" class="button">
        <span class="icon" data-icon="category"></span>
        Random web stuff
    </a>

    <a href="/source" class="button">
        <span class="icon" data-icon="code"></span>
        Source code viewer
    </a>
    <a href="https://github.com/sliva0/slightly_bitten_site" class="button">
        <span class="svg-icon github-icon"></span>
        Source code on github
    </a>
</div>

{%- endblock -%}