{% extends "_base.html" %} {% block page %}blog{% endblock page%} {% block lang %}{% if section.extra.lang %}{{ section.extra.lang }}{% else %}{{ section.lang }}{% endif %}{% endblock lang %} {% block title %}{{ section.title }}{% endblock title %} {% block desc %} {% endblock desc %} {% block content %} {% include "_header.html" %}
{% if config.extra.blog_categorized %} {% for category,posts in section.pages | group_by(attribute="taxonomies.categories.0") -%}
{{ category }}
{% for post in posts %} {{ post.title }} {{ post.date | date}} {% endfor %}
{% endfor %} {% else %}
{% for post in section.pages %} {{ post.title }} {{ post.date | date}} {% endfor %}
{% endif %}
{% include "_footer.html" %}
{% endblock content %}