aboutsummaryrefslogtreecommitdiffstats
path: root/uikit/templates/page.html
blob: 3b1efab1dbb15b97aecad1c6f38105b7f93790c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "uikit.html" %}
{% import 'article_macros.html' as article_macros %}
{% import 'html_macros.html' as html_macros %}

{% block head %}
{{ super() }} {{ html_macros.get_meta(page) }}
{% endblock head %}
{% block titlename %}{{page.title}}{% endblock titlename %}

{% block content %}
<article class="uk-article">
    <h1 class="{% if CAPITALIZE_HEADINGS %}capitalize{% endif %} uk-article-title">
        <a href="/{{ page.url }}">{{ page.title }}</a>
    </h1>
    <p class="uk-article-meta">
    {{ article_macros.get_meta(SITEURL, page, False) }}
    </p>
    {{ page.content }}
</article>
{% endblock content %}