Complete layout restructure
This should help with visual separation of content.master
parent
e3cb52787c
commit
7ffad10601
@ -1 +1,23 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<section class="flex">
|
||||
<div>
|
||||
<h2>Schůzky</h2>
|
||||
{% if section.extra.meetings_string %}
|
||||
<p>{{ section.extra.meetings_string | safe }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div>
|
||||
<h2>Plánované akce</h2>
|
||||
<p>Lorem ipsum dolor sit amet, officia excepteur ex fugiat reprehenderit enim labore culpa sint ad nisi Lorem pariatur mollit ex esse exercitation amet.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section>
|
||||
{% if section %}
|
||||
{{ section.content | safe }}
|
||||
{% elif page %}
|
||||
{{ page.content | safe }}
|
||||
{% endif %}
|
||||
</section>
|
||||
{% endblock content %}
|
||||
|
Loading…
Reference in New Issue