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

7 lines
225 B
Django/Jinja

{% for date, sections in posts[language].items() %}
{% if section in sections %}
{% for url, post in posts[language][date][section].items() %}
{% include "components/post_summary.j2" %}
{% endfor %}
{% endif %}
{% endfor %}