aboutsummaryrefslogtreecommitdiff
path: root/templates/post.html
blob: 9c6cc94f74bc2d659258bb222e78745ff0a74004 (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
{% extends 'base.html' %}

{% block content %}
<section class="post_header">
    <h1>{{ page.title | trim | safe }}</h1>

    <p>
        <small>
            Posted
            <time datetime="{{ page.date | date(format='%+') | trim | safe }}">{{ page.date | date(format='%B %e, %Y', timezone='Europe/Moscow') }}</time>
            by <a href="mailto:valentin@popov.link?subject={{ page.title | trim | safe | urlencode }}">Valentin Popov</a>&nbsp;&hyphen;
            <strong>{{ page.reading_time | safe }}&nbsp;min read</strong>
        </small>
    </p>
</section>

<section>
    {{ page.content | safe }}
</section>

<section>
    {% include 'includes/comments.html' %}
</section>
{% endblock content %}