blob: df6c3b71300ddb2416d38fe743b4bab8ccc98a52 (
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><time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d") }}</time></p>
<h1>{{ post.title }}</h1>
{% if post.description is defined %}
<p>{{ post.description }}</p>
{% endif %}
<div>{{ post.html | safe }}</div>
<div><a href="mailto:[email protected]">Reply via email →</a></div>
</article>
{% endblock %}
|