{% extends "layout.html" %} {% block title %}{{ title }}{% endblock %} {% block nav_latest %}{% if latest %}active{% endif %}{% endblock %} {% block content %}

{{ header }}

{% for quote in quotes %}
{{ quote.quote }}

Tags: {% for tag in quote.tags %}{{tag}}{% if not loop.last %}, {% endif %}{% endfor %}

{% if not loop.last %}
{% endif %} {% endfor %}
{% endblock %}