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

9 lines
285 B
Plaintext
Raw Normal View History

2023-10-14 10:52:02 +00:00
{% for date, sections in posts[language].items() %}
{% for section, urls in sections.items() %}
2023-07-23 08:47:23 +00:00
{% if section != "/" %}
{% for url, post in urls.items() %}
{% include "components/post_summary.j2" %}
{% endfor %}
{% endif %}
2023-10-14 10:52:02 +00:00
{% endfor %}
2023-07-22 13:18:15 +00:00
{% endfor %}