{% extends "default.html" %} {% block title %}Index{% endblock %} {% block content %}

Index

{% for topic, posts in topics %}

{{ topic }}

{% for type, post in posts %}

{{ post["title"] }}

{{ post.content | first_paragraph | markdown }}

{% endfor %}
{% endfor %}
{% endblock %}