{% extends "base.html" %} {% block content %} {% for post in posts %}

{{ post.title }}

{% if post.topics %} • {% for topic in post.topics %} {%- if loop.last -%} {{ topic | capitalize }} {%- else -%} {{ topic | capitalize }}, {%- endif -%} {% endfor %} {% endif %} • {{ "{:,.0f}".format(post.wordcount) }} words

{{ post.excerpt_html | safe }}
{% endfor %} {% endblock %}