<p>welcome to my new blog!</p>
<p>learn more <a href="/about">about it</a>.</p>
<p>here are my posts:</p>
<ul>
{% for post in posts['posts'] %}
<li>
<strong><a href="/{{ post.url }}">{{ post.title }}</a></strong>:
{{ post.subtitle }}
{% for tag in post.tags %}<span class="tag">[{{tag}}]</span>{% endfor %}
<em>(published {{ post.published[:10] }})</em>
</li>
{% endfor %}
</ul>