2022-05-18 00:35:37 +02:00
|
|
|
{% extends "header_slim.html" %}
|
2018-02-25 00:06:19 +01:00
|
|
|
{% from "macros/blog.html" import render_blog_post %}
|
2022-05-18 00:35:37 +02:00
|
|
|
{%- 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 %}
|
2022-05-18 00:35:37 +02:00
|
|
|
<div class="content__box">
|
|
|
|
<div class="content__inner_box">
|
|
|
|
<h1>{{ this.title }}</h1>
|
|
|
|
</div>
|
2019-02-12 17:45:44 +01:00
|
|
|
</div>
|
2022-05-18 00:35:37 +02:00
|
|
|
{{ render_blog_post(this) }}
|
2018-02-25 00:06:19 +01:00
|
|
|
{% endblock %}
|