mirror of
https://github.com/zaaarf/friendenstein.git
synced 2024-11-14 03:29:23 +01:00
12 lines
470 B
HTML
12 lines
470 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div><a href="..">..</a>/<span class="metaData">{{ page.slug }}</span></div>
|
|
<time datetime="{{ page.date }}">Published on: <span class="metaData">{{ page.date }}</span></time>
|
|
{% if config.extra.author and config.extra.display_author == true %}
|
|
<address rel="author">By <span class="metaData">{{config.extra.author}}</span></address>
|
|
{% endif %}
|
|
|
|
<article>{% include "base-page.html" %}</article>
|
|
|
|
{% endblock content %}
|