webseite/templates/blog-post.html

19 lines
519 B
HTML
Raw Permalink Normal View History

{% extends "header_slim.html" %}
2018-02-25 00:06:19 +01:00
{% from "macros/blog.html" import render_blog_post %}
{%- block title -%}{{ this.title }}{%- endblock -%}
{%- block meta_description -%}
{%- if this.meta_description is defined and this.meta_description != "" -%}
{{ this.meta_description }}
{%- else -%}
C3WOC
{%- endif -%}
{%- endblock -%}
2018-02-25 00:06:19 +01:00
{% block body %}
<div class="content__box">
<div class="content__inner_box">
<h1>{{ this.title }}</h1>
</div>
2019-02-12 17:45:44 +01:00
</div>
{{ render_blog_post(this) }}
2018-02-25 00:06:19 +01:00
{% endblock %}