26 lines
435 B
Twig
26 lines
435 B
Twig
{% extends "base" %}
|
|
|
|
{% block body %}
|
|
<nav>
|
|
<a href="/">Home</a>
|
|
</nav>
|
|
|
|
{{ parent() }}
|
|
{% endblock %}
|
|
|
|
{% block content_wrapper %}
|
|
<time date="{{ page.date|date('c') }}">{{ page.date|date }}</time>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
{% if page.tags is not empty %}
|
|
<h2>Tags</h2>
|
|
|
|
<ul>
|
|
{% for tag in page.tags|sort %}
|
|
<li>{{ tag }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endblock %}
|