mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
14 lines
287 B
Plaintext
14 lines
287 B
Plaintext
|
{% extends "base.html.j2" %}
|
||
|
|
||
|
{% block main_block %}
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
|
<div class="col s12">
|
||
|
<h2>{% if title %}{{ title }}{% else %}Unnamed page{% endif %}</h2>
|
||
|
</div>
|
||
|
{% block page_content %}
|
||
|
{% endblock %}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|