aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/base-jinja/templates/base.tmpl
blob: 2b151776ef9d8baca20a3c237fb7d56ca74064de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{#  -*- coding: utf-8 -*- #}
{% import 'base_helper.tmpl' as base with context %}
{% import 'base_header.tmpl' as header with context %}
{% import 'base_footer.tmpl' as footer with context %}
{% import 'annotation_helper.tmpl' as annotations with context %}
{{ set_locale(lang) }}
{{ base.html_headstart() }}
{% block extra_head %}
{#  Leave this block alone. #}
{% endblock %}
{{ template_hooks['extra_head']() }}
</head>
<body>
    <div id="container">
         {{ header.html_header() }}
         <main id="content">
            {% block content %}{% endblock %}
         </main>
         {{ footer.html_footer() }}
    </div>
    {{ body_end }}
    {{ template_hooks['body_end']() }}
    {{ base.late_load_js() }}
</body>
</html>