aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/normal.html
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2018-01-22 22:33:28 +0100
committerKatharina Fey <kookie@spacekookie.de>2018-01-22 22:33:28 +0100
commitf9a1509375bb1e05365c0a913efd8babab3ef362 (patch)
tree224012b857fcf816a4a731d61eed577f2b443dae /crumbs/templates/normal.html
parent7876c2efa6de701d951cfb07ebd70f1248893c0c (diff)
Cleaning up templates SIGNIFICANTLY
Diffstat (limited to '')
-rw-r--r--crumbs/templates/normal.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/crumbs/templates/normal.html b/crumbs/templates/normal.html
index 5cb6467..40a51b4 100644
--- a/crumbs/templates/normal.html
+++ b/crumbs/templates/normal.html
@@ -1,2 +1,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 %} \ No newline at end of file