mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
24 lines
564 B
HTML
24 lines
564 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ page.title }} | {{ config.title }}{% endblock title %}
|
|
|
|
{% block main %}
|
|
<h1>{{ page.title }}</h1>
|
|
{{ page.content | safe }}
|
|
{% endblock main %}
|
|
|
|
{% block after_main %}
|
|
<hr>
|
|
<div class="PageNavigation">
|
|
|
|
{% if page.previous %}
|
|
<a class="prev" href="{{ page.previous.path }}">« {{ page.previous.title }}</a>
|
|
{% endif %}
|
|
{% if page.next %}
|
|
<a class="next" href="{{ page.next.path }}">{{ page.next.title }} »</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock after_main %}
|
|
|
|
|