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
@@ -1,4 +1,4 @@
{% extends "public/base.html" %} {% extends "public/default.html" %}
{% block content %} {% block content %}
<h2>Hi</h2> <h2>Hi</h2>
+2 -4
View File
@@ -4,11 +4,9 @@
<body> <body>
{% include "public/header.html" %} {% include "public/header.html" %}
{% block raw_content %}
{% block content %}
{% endblock %} {% endblock %}
{% include "public/footer.html" %}
<p>Ende Gelände!</p>
</body> </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>