summaryrefslogtreecommitdiffstats
path: root/templates/index.html
blob: 643af81be59c7af579a7ed1c5924d1b6112304bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends 'layout.html' %}

{% block content %}
<article itemscope itemtype="http://schema.org/Article">
	<div>
		<h1>{{ entry['title'] }}</h1>
		<time itemprop="datePublished" datetime="{{ entry['date'] }}">{{ entry['date'] }}</time>
	</div>
	<div>
	{{ content }}
	</div>
</article>
{% if older %}
<div id="post-nav">
	<a class="older" href="{{ older['file'] }}.html">Older</a>
</div>
{% endif %}
{% endblock %}