{#- The shipped default for the blog index: every post, newest first, under a heading per year. A site restyles it by shipping templates/blog/blog-index.html (this app only) or templates/podpack_pages/blog-index.html (every blog-kind app). In scope: title, years -- a list of (year, posts) pairs, newest first. Links go through url_for so they follow the app wherever the site mounts it. -#} {% extends "base.html" %} {% block content %} {%- for year, posts in years %}

{{ year or "Undated" }}

{%- else %}

No posts yet.

{%- endfor %} {% endblock %}