{% extends 'base.html' %} {% import 'macros.html' as macros %} {% block title %}top quotes | ~chat qdb{% endblock %} {% block pagetitle %}top quotes of all time{% endblock %} {% block content %} {{ macros.paginate(pagination) }} {% for quote in quotes %}
{{ quote['content'] }}
{{ macros.voting_buttons(quote['id'], quote['score']) }}
{% endfor %}