pedf
/
fakulta-online
Archived
1
0
Fork 0

Možnost specifikovat krátký název příspěvku

master
Emil Miler 3 years ago
parent e2351205af
commit 652e5ea12d

@ -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 %}