15 lines
183 B
HTML
15 lines
183 B
HTML
{% load static %}
|
|
|
|
<html>
|
|
<body>
|
|
|
|
{% include "public/header.html" %}
|
|
{% block raw_content %}
|
|
{% endblock %}
|
|
{% include "public/footer.html" %}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|