{% extends "base.html" %} {% block content %}

Recent Quotes

{% if quotes %} {% for quote in quotes %}
Quote #{{ quote.id }}
{{ quote.quote | safe }}
{% if quote.comment %}
{{ quote.comment }}
{% endif %}
{% endfor %} {% else %}

No quotes found. Submit the first one!

{% endif %}
Browse all quotes →
{% endblock %} {% block extra_js %} {% endblock %}