blob: 407b3b02176bca524d613bd27ef343263d369dda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{% 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>
<section class="post-metadata">
<div class="meta-row">
<span class="meta-label">Title:</span>
<span class="meta-value">{{ post.title }}</span>
</div>
<div class="meta-row">
<span class="meta-label">Date:</span>
<time class="meta-value" datetime='{{ post.date | strftime("%Y-%m-%d") }}''>
{{ post.date | strftime("%Y-%m-%d %H:%M:%S") }}
</time>
</div>
<div class="meta-row">
<span class="meta-label">Description:</span>
<span class="meta-value">{{ post.description }}</span>
</div>
</section>
<section>{{ post.html | safe }}</section>
<div class="reply-link"><a href="mailto:[email protected]">Reply via email →</a></div>
</article>
{% endblock %}
|