aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/post.html
blob: cffde6383277bd865c97d4c8739f7854331803b4 (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 %}
<script src="https://bubbles.town/vote.js" defer></script>
{% endblock %}
{% block main %}
<article>
    <h1>{{ post.title }}</h1>
    <p><time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d") }}</time>{% if post.description is defined %} &middot; {{ post.description }}{% endif %}</p>
    <div class="bubbles-vote"></div>
    <div>{{ post.html | safe }}</div>
    <div><a href="mailto:[email protected]">Reply via email &rarr;</a></div>
    <div><i>...or, comment on this post on <a href="https://bubbles.town/source/cleberg.net">Bubbles</a>!</i></div>
</article>
{% endblock %}