Schule als Staat Projekt Web, Dokumente, etc.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

23 строки
601B

  1. {% load static %}
  2. <html>
  3. <head>
  4. <link rel="shortcut icon" type="image/x-icon" href="{% static "public/images/favicon.ico" %}">
  5. <title>
  6. {% if appname == "startpage" %}Startseite - {% endif %}
  7. {% if appname == "datenbank" %}Datenbank - {% endif %}
  8. {% if appname == "meingoethopia" %}Mein Goethopia - {% endif %}
  9. Goethopische Agentur für politische Bildung</title>
  10. </head>
  11. <body>
  12. {% include "public/header.html" %}
  13. {% block raw_content %}
  14. {% endblock %}
  15. {% include "public/footer.html" %}
  16. </body>
  17. </html>