aboutsummaryrefslogblamecommitdiff
path: root/templates/post.html
blob: bd90b498f250d6b9d433a11ef1fe736da365625d (plain) (tree)
1
2
3
4
5


                         
                                     
                                           








                                                                                                                                                          
          
 


                             
 


                                          
                     
{% extends 'base.html' %}

{% block content %}
<section style="text-align: center;">
    <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 %}