blob: 018068eba8623ce1132a60c3ced2a63c4b7bca2d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends "base.html" %} {% block subtitle %} {{ post.title }} - {% endblock %}
{% block meta %}
<meta property="og:title" content="{{ post.title }}" />
<meta property="og:url" content="{{ post.url }}" />
{% if post.description is defined %}
<meta property="og:description" content="{{ post.description }}" />
{% elif project_description is defined %}
<meta property="og:description" content="{{ project_description }}" />
{% endif %}
{% endblock %}
{% block main %}
<article>
<p class="article-dateline"><time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d") }}</time></p>
<h1 class="article-title">{{ post.title }}</h1>
{% if post.description is defined %}
<p class="article-standfirst">{{ post.description }}</p>
{% endif %}
<div class="article-body">{{ post.html | safe }}</div>
<div class="reply-link"><a href="mailto:[email protected]">Reply via email →</a></div>
</article>
{% endblock %}
|