aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/post.html
blob: 8cc9e2ea1843f795831b9b1943ebb55a59037c60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% 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="metadata">
		<b>Object</b> <span>{{ post.title }}</span>
		<b>Timestamp</b> <span><time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d %H:%M:%S") }}</time></span>
		<b>Summary</b> <span>{{ post.description }}</span>
	</section>
	<section>{{ post.html | safe }}</section>
	<div class="reply-link"><a href="mailto:[email protected]">Reply via email &rarr;</a></div>
</article>
{% endblock %}