forked from ag_kommunikation/webseite
11 lines
268 B
HTML
11 lines
268 B
HTML
|
{% extends "header_slim.html" %}
|
||
|
{% from "macros/blog.html" import render_blog_post %}
|
||
|
<div class="content__box">
|
||
|
<div class="content__inner_box">
|
||
|
<h1>{{ this.title }}</h1>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% block body %}
|
||
|
{{ render_blog_post(this) }}
|
||
|
{% endblock %}
|