{% extends 'layout.html' %} {% set crumbs = (('News',),) %} {% block content %}
{% for post in posts %}

{{ post.title }}

{{ post.date }}{% if post.tags %} ยป {% for tag in post.tags %}{{ tag }}{% if not loop.last %}, {% endif %}{% endfor %}{% endif %}

{% endfor %}
{% endblock %}