aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/base/templates/base.tmpl
blob: 8a903493eb315c01bee3f2518d8fddaae9819217 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
## -*- coding: utf-8 -*-
<%namespace name="base" file="base_helper.tmpl" import="*"/>
<%namespace name="annotations" file="annotation_helper.tmpl"/>
${set_locale(lang)}
<!DOCTYPE html>
<html
%if comment_system == 'facebook':
xmlns:fb="http://ogp.me/ns/fb#"
%endif
lang="${lang}">
<head>
    ${base.html_head()}
    <%block name="extra_head">
    </%block>
    ${extra_head_data}
</head>
<body>
    <h1 id="blog-title">
        <a href="${abs_link('/')}" title="${blog_title}" rel="home">${blog_title}</a>
    </h1>
    <%block name="belowtitle">
        %if len(translations) > 1:
        <small>
            ${messages("Also available in:")}&nbsp;
            ${base.html_translations()}
        </small>
    %endif
    </%block>
    <%block name="content"></%block>
    <small>${content_footer}</small>
    <!--Sidebar content-->
    <ul class="unstyled">
    %if license:
    <li>${license}
    %endif
    ${base.html_social()}
    ${base.html_navigation_links()}
    %if search_form:
    <li>${search_form}
    %endif
    </ul>
    ${base.late_load_js()}
    ${social_buttons_code}
</body>
</html>