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

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

{% block wrapped %}
    {% with type='home' %} {% include "components/navbar_generator.html" %} {% endwith %}
    {% with title_type='title' %} {% include "components/title_text.html" %} {% endwith %}
    {% include "components/super_gay.html" %}

    {{ page.content }}
{% endblock %}