aboutsummaryrefslogtreecommitdiff
path: root/templates/post.html
blob: e5d1cc7db299bfc0d9dfc9fba98134a379df2cae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends 'base.html' %}

{% block content %}
<h1>{{ page.title | trim }}</h1>

{{ page.content | safe }}

<small>
    <span>Published</span>
    <time datetime="{{ page.date | date(format='%+') | trim }}">{{ page.date | trim }}</time>
    <span>|</span>
    {% set email = config.extra.author.email | trim %}
    <a href="mailto:{{ email }}?subject={{ page.title | urlencode | trim }}">Feedback</a>
    <span>|</span>
    <a href="{{ page.permalink | trim }}">Permalink</a>
</small>
{% endblock content %}