summaryrefslogtreecommitdiffstats
path: root/nfsw/templates/nfsw.html
blob: 0ecadece3098c62b968777e56e879714320fee56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends 'base.html' %}

{% block title %}/{% endblock %}

{% block content %}
<div class="nfsw-grid">
    <div class="nfsw-grid-item">
        <header>
            <h1>NFSW is Fulla Slimy Warts!</h1>
        </header>

        <div class="buttons">
            <a class="button" href="/register">Register</a>
            <a class="button" href="/login">Login</a>
        </div>
    </divd>
</div>
{% endblock %}

{% block css %}
<link rel="stylesheet" href="{{ url_for('static', filename='root.css') }}">
{% endblock %}