blob: 3b1efab1dbb15b97aecad1c6f38105b7f93790c7 (
plain) (
tree)
|
|
{% 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 %}
|