aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/post.html
blob: 66c335cda8bc930c7b27f98d3eb3fa84da806635 (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>
		<b>Title</b>: {{ post.title }}
		<br><b>Date</b>: <time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d %H:%M:%S") }}</time>
		<br><b>Description</b>: {{ post.description }}
	</section>
	<section>{{ post.html | safe }}</section>
	<div class="reply-link"><a href="mailto:[email protected]">Reply via email &rarr;</a></div>
</article>
{% endblock %}