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

11 lines
326 B
Plaintext
Raw Normal View History

2023-07-22 13:18:15 +00:00
<div class="sidebar">
<section>
{% for section, urls in posts[language].items() %}
2023-07-23 08:47:23 +00:00
{% if section != "/" %}
<p>
<a href="/{{ language}}/{{ section }}">{{ translate(section, language) }} ({{ urls | length }})</a>
</p>
{% endif %}
2023-07-22 13:18:15 +00:00
{% endfor %}
</section>
2023-07-23 08:47:23 +00:00
</div>