blob: 5fc80db1a415a50a8af443bd0f2a50873a7719e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "base.html" %}
{% set post = page %}
{% block header %}
<h1>{{ page.title }}</h1>
<p class="publish-date">Published {{ page.date | date(format="%b %d, %Y
%H:%M UTC") }} on <a href="/weblog">Yaroslav's weblog</a></p>
{% endblock %}
{% block content %}
<div class="post-container">
{{ page.content | safe }}
</div>
{% endblock %}
|