You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
596 B
HTML
24 lines
596 B
HTML
{% 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 %}
|