post.twig
<h2>{{ post.title }}</h2>
<p><small>{{ post.created_at }}</small></p>
<article>
{{ post.content|raw }}
{% if post.tags is defined and post.tags is not empty %}
<ul class="tags">
{% for tag in post.tags %}
<li class="tag">{{ tag }}</li>
{% endfor %}
</ul>
{% endif %}
</article>