franca-theme-blog/templates/components/sidebar.j2

17 lines
553 B
Django/Jinja

<div class="sidebar">
<section>
{% set sections_list = [] %}
{% for date, sections in posts[language].items() %}
{% for section, urls in sections.items() %}
{% if section != "/" %}
{% set sections_list = sections_list.append(section) %}
{% endif %}
{% endfor %}
{% endfor %}
{% for section in sections_list | unique %}
<p>
<a href="/{{ language}}/{{ section }}/">{{ translate(section, language) }}</a>
</p>
{% endfor %}
</section>
</div>