Skip to content
Snippets Groups Projects
Select Git revision
  • 6da1c5674ce55be506f00e6871453ad4d98ac6f4
  • main default protected
2 results

common.php

Blame
  • base.html 1.10 KiB
    {% load static wagtailcore_tags wagtailimages_tags wagtailmetadata_tags %}
    
    <!doctype html>
    <html lang="cs">
      <head>
        {% if request.in_preview_panel %}
          <base target="_blank">
        {% endif %}
    
        <!-- Meta -->
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width"/>
    
        {% meta_tags %}
    
        {% if settings.MAJAK_ENV == "test" %}
          <meta name="robots" content="noindex, nofollow">
        {% endif %}
    
        <!-- Favicon -->
        {% include "shared/favicon_snippet.html" %}
    
        <!-- Styles -->
        <link rel="stylesheet" href="{% static 'styleguide2/main.css' %}">
    
        {% block styles %}{% endblock styles %}
    
        {% if page.root_page.matomo_id %}
          {% include "shared/matomo_snippet.html" with matomo_id=page.root_page.matomo_id %}
        {% endif %}
      </head>
    
      <body>
        {% include 'styleguide2/includes/organisms/layout/messages.html' %}
    
        {% block content %}{% endblock content %}
    
        {% include 'styleguide2/includes/organisms/layout/footer.html' %}
    
        <script src="{% static 'styleguide2/main.js' %}"></script>
    
        {% block scripts %}{% endblock scripts %}
      </body>
    </html>