webseite/templates/blog-post.html

19 lines
555 B
HTML
Raw Permalink Normal View History

2021-02-21 17:03:49 +01:00
{% extends "header_slim.html" %}
{% from "macros/blog.html" import render_blog_post %}
2021-02-24 23:44:49 +01:00
{%- block title -%}{{ this.title }}{%- endblock -%}
{%- block meta_description -%}
{%- if this.meta_description is defined and this.meta_description != "" -%}
{{ this.meta_description }}
{%- else -%}
Werkkooperative der Technikfreundinnen eG
{%- endif -%}
{%- endblock -%}
{% block body %}
2021-02-21 17:03:49 +01:00
<div class="content__box">
<div class="content__inner_box">
<h1>{{ this.title }}</h1>
</div>
</div>
{{ render_blog_post(this) }}
{% endblock %}