{% extends "minimal.html" %} {% block page_styles %} {% endblock %} {% block body_content %}

{{ title }}

{{ description }}

{% for card in cards %}
{% if show_deck_name %}
{{ title }}
{% endif %} {% if show_card_index %}
{{ loop.index }}/{{ cards|length }}
{% endif %}
{{ card.front|safe }}
{% if card.tags %}
{% for tag in card.tags %} {{ tag }} {% endfor %}
{% endif %}
{% if show_card_index %}
{{ loop.index }}/{{ cards|length }}
{% endif %}
{{ card.back|safe }}
{% endfor %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}