Skip to content
Snippets Groups Projects
Select Git revision
  • master protected
  • test default
2 results

base.html

Blame
  • base.html 824 B
    {% load static %}
    {% load render_bundle from webpack_loader %}
    
    <!DOCTYPE html>
    <html lang="cs" class="h-full">
        <head>
            <meta encoding="utf-8">
            <link
                rel="stylesheet"
                type="text/css"
                href="{% static "shared/style.css" %}"
            >
    
            <link
                rel="stylesheet"
                href="https://gfonts.pirati.cz/css2?family=Bebas+Neue&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap"
            >
    
            <link
                rel="stylesheet"
                type="text/css"
                href="{% static "shared/fonts/pirati-ui/style.css" %}"
            >
    
            <title>{% block current_page %}{% endblock %}</title>
    
            {% render_bundle "base" %}
        </head>
        <body>
            {% block content %}{% endblock %}
        </body>
    </html>