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

Make room for more page templates

parent d4fbf570
No related branches found
No related tags found
No related merge requests found
{% extends "base.html" %} {% extends "pages/content.html" -%}
{% block main %}
<section class="section">
<div class="container">
<h1 class="title is-1">{{ page.title }}</h1>
{% block content %}
<div class="content mt-4">
{{ page.content | safe }}
</div>
{% endblock content %}
</div>
</section>
{% endblock %}
{% extends "base.html" %}
{% block main %}
<section class="section">
<div class="container">
<h1 class="title is-1">{{ page.title }}</h1>
{% block content %}
<div class="content mt-4">
{{ page.content | safe }}
</div>
{% endblock content %}
</div>
</section>
{% endblock %}
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