Schule als Staat Projekt Web, Dokumente, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
816B

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