|
|
@ -23,7 +23,13 @@
|
|
|
|
<h3>Příklady dobré praxe</h3>
|
|
|
|
<h3>Příklady dobré praxe</h3>
|
|
|
|
<section class="articles">
|
|
|
|
<section class="articles">
|
|
|
|
{% for page in section.pages %}
|
|
|
|
{% for page in section.pages %}
|
|
|
|
<a href="{{ page.permalink }}">{{ page.title }}</a>
|
|
|
|
<a href="{{ page.permalink }}">
|
|
|
|
|
|
|
|
{% if page.extra.short_title %}
|
|
|
|
|
|
|
|
{{ page.extra.short_title }}
|
|
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
|
|
{{ page.title }}
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|