summaryrefslogblamecommitdiffstats
path: root/templates/page.html
blob: 7405a3f9108971882e812b95f5fed91bd1c9a0de (plain) (tree)
1
2
3
4
5
6
7





                                                                                 
                                                                               















                                                                                                                   
{% extends "index.html" %}

{% block title %}{{ page.title }} · {{ config.title }}{% endblock title %}

{% block header %}
<header>
    <a href="/"><img id="logofloat" src="{{ config.extra.logo | safe }}" /></a>
</header>
{% endblock header %}

{% block content %}
    <article>
        <h1>{{ page.title }}</h1>
        <span class="single-date">{{ page.date | date(format="%B %e, %Y") }}</span>
{% if page.updated | date  %}
        <br>
        <span class="single-date"><small>Last modified {{ page.updated | date(format="%B %e, %Y") }}</small></span>
{% endif %}

{{ page.content | safe }}

    </article>
{% endblock content %}