blob: 61dd22f8e650a82a2fb38ca1e6f411f4bb257473 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "index.html" %}
{% block content %}
<article itemscope itemtype="http://schema.org/BlogPosting">
<header>
<h1 itemprop="headline">{{ page.title }}</h1>
</header>
<div itemprop="articleBody">
{{ page.content | safe }}
</div>
</article>
{% endblock content %}
<!--
vim:sw=2
-->
|