23 lines
601 B
HTML
23 lines
601 B
HTML
{% load static %}
|
|
|
|
<html>
|
|
<head>
|
|
<link rel="shortcut icon" type="image/x-icon" href="{% static "public/images/favicon.ico" %}">
|
|
<title>
|
|
{% if appname == "startpage" %}Startseite - {% endif %}
|
|
{% if appname == "datenbank" %}Datenbank - {% endif %}
|
|
{% if appname == "meingoethopia" %}Mein Goethopia - {% endif %}
|
|
Goethopische Agentur für politische Bildung</title>
|
|
</head>
|
|
<body>
|
|
|
|
{% include "public/header.html" %}
|
|
{% block raw_content %}
|
|
{% endblock %}
|
|
{% include "public/footer.html" %}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|