Skip to content
Snippets Groups Projects
Select Git revision
  • 2860f8e0039fba5a94eb635c3922a388cd36b984
  • master default protected
  • feat/new-image-formats
  • clickable-select-chevron
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.1
  • 2.11.0
  • 2.10.0
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.2
  • 2.5.1
24 results

calendar.pcss

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>