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

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

{% block wrapped %}
    {% with type='normal' %} {% include "components/navbar_generator.html" %} {% endwith %}
    {% include "components/super_gay.html" %}

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

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