blob: 6a83bc0f2dacdfb3062df812c7d40e8c54ff7571 (
plain) (
tree)
|
|
{% extends "index.html" %}
{% block title %}{{ page.title }} · {{ config.title }}{% endblock title %}
{% block header %}
<header>
<a href="/"><img id="logofloat" src="{{ config.extra.logo }}" /></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 %}
|