blob: 5bf4d94de1fd5e1e040da4e938d11886e99942ef (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% extends "base.html.j2" %}
{% block page_title %}{{ post.title() }} {{ super() }}{% endblock %}
{% block page_title_short %}{{ post.title() }}{% endblock %}
{% block content %}
<p class="first-element">{{ post.get_cat_prompt(subpage_name) }}</p>
<div class="blog-content-spacer"></div>
{{ subpage_html|safe }}
<hr>
<p class="last-element">{{ post.get_cat_prompt("") }}<a href=".">content</a></p>
{% endblock %}
|