blob: fab4c1e1ec34c814417cf0bd838d2fdc6e60d9ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends 'layout.html' %}
{% block head %}
{% if page.meta_desc is defined %}
<meta name="description" content="{{ page.meta_desc }}">
{% endif %}
{% if page.meta_keywords is defined %}
<meta name="keywords" content="{{ page.meta_keywords }}">
{% endif %}
{% endblock head %}
{% block content %}
<article id="{{ page.article_id }}" class="botborder" itemprop="mainContentOfPage">
{{ page.body }}
<p id="last-upd">Last updated <time itemprop="dateModified" datetime="{{ page.date }}">{{ page.date }}</time></p>
<p id="author"><a rel="author" href="{{ page.author_link }}">{{ page.author }}</a></p>
</article>
{% endblock content %}
|