17 lines
168 B
HTML
17 lines
168 B
HTML
{% load static %}
|
|
|
|
<html>
|
|
<body>
|
|
|
|
{% include "public/header.html" %}
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
<p>Ende Gelände!</p>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|