aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/normal.html
blob: 40a51b446b1f6ce1a8888929537561c807ac9f02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "base.html" %}

{# Define what html head we include #}
{% block head %}
    {% with type='base' %}
    {% include "components/html_head.html" %}
    {% endwith %}
{% endblock head %}

{% block wrapped %}
    <div class="navigation">
        {% with title_type='page-title' %} {% include "components/title_text.html" %} {% endwith %}
        {% include "components/link_generator.html" %}
    </div>

    {# Include the colour bar as a divider #}
    {% include "components/super_gay.html" %}

    <h1>{% block title %}{% endblock %}</h1>

    {% block content %}
    {% endblock %}
{% endblock %}