Skip to content
Snippets Groups Projects
base.html 791 B
Newer Older
  • Learn to ignore specific revisions
  • {% load staticfiles %}
    
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
    
            {% block meta-extra %}{% endblock %}
    
    Tim Fechner's avatar
    Tim Fechner committed
    
    
            <title>{% block title-extra %}{% endblock %} | Salt-Observer</title>
    
    Tim Fechner's avatar
    Tim Fechner committed
            <link rel="icon" href="{% static 'img/favicon-heartbeat.ico' %}">
    
    
            {% block pre-style %}{% endblock %}
    
            <link rel="stylesheet" href="{% static 'css/main.min.css' %}">
    
            {% block post-style %}{% endblock %}
        </head>
    
        <body {% block body-args %}{% endblock %}>
    
            {% block body %}{% endblock %}
    
    Tim Fechner's avatar
    Tim Fechner committed
    
            {% block pre-script %}{% endblock %}
    
            <script src="{% static 'js/contrib/main.min.js' %}"></script>
    
            <script src="{% static 'js/base.min.js' %}"></script>
    
    Tim Fechner's avatar
    Tim Fechner committed
            {% block post-script %}{% endblock %}
    
        </body>
    </html>