Skip to content
Snippets Groups Projects
Unverified Commit 167e3786 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Re-introduce message about incomplete pages

parent b2398e9e
No related branches found
No related tags found
No related merge requests found
......@@ -5,9 +5,15 @@
<div class="container">
<h1 class="title is-1">{{ page.title }}</h1>
{% block content %}
<div class="content mt-4">
{{ page.content | safe }}
</div>
{% if page.content %}
<div class="content mt-4">
{{ page.content | safe }}
</div>
{% else %}
{% set title = "Diese Seite fehlt leider noch" -%}
{% set body = "Da der Aufbau unserer neuen Website sehr aufwendig ist, sind die Informationen auf dieser Seite leider noch nicht vollständig." -%}
{% include "shortcodes/message.html" %}
{% endif %}
{% endblock content %}
</div>
</section>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment