add footer and content files

This commit is contained in:
erichhasl
2017-11-18 13:40:56 +01:00
parent 4f97c26b6d
commit f5f1218a2f
4 changed files with 16 additions and 5 deletions
+2 -4
View File
@@ -4,11 +4,9 @@
<body>
{% include "public/header.html" %}
{% block content %}
{% block raw_content %}
{% endblock %}
<p>Ende Gelände!</p>
{% include "public/footer.html" %}
</body>
@@ -0,0 +1,8 @@
{% extends "public/base.html" %}
{% block raw_content %}
<div id="content">
{% block content %}
{% endblock %}
</div>
{% endblock %}
@@ -0,0 +1,5 @@
<div id="footer">
<p>(C) N.H. und C.M.</p>
</div>