{% extends "minimal.html" %} {% block title %}{{ title }}{% endblock %} {% block page_styles %} {% endblock %} {% block body_content %} {% if layout == 'single' %} {% for card in cards %}
{% if style.show_deck_name %}
{{ title }}
{% endif %} {% if style.show_card_index %}
{{ loop.index }}
{% endif %}
{{ card.front | safe }}
{% if style.show_deck_name %}
{{ title }}
{% endif %} {% if style.show_card_index %}
{{ loop.index }}
{% endif %}
{{ card.back | safe }}
{% endfor %} {% else %} {% set cards_per_page = 8 %} {% set total_groups = ((cards | length + cards_per_page - 1) // cards_per_page) %} {% set pages_count = total_groups * 2 %} {% for page_start in range(0, cards | length, cards_per_page) %} {% set page_cards = cards[page_start:page_start + cards_per_page] %}
{% for card in page_cards %}
{% if style.show_deck_name %}
{{ title }}
{% endif %} {% if style.show_card_index %}
{{ page_start + loop.index }}
{% endif %}
{{ card.front | safe }}
{% endfor %}
{% for card in page_cards %}
{{ card.back | safe }}
{% endfor %}
{% endfor %} {% endif %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}