summaryrefslogtreecommitdiff
path: root/templates/card/card_list.twig
blob: a233df96c36f110b0c0a4694ae575373c689618b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends 'card/card.twig' %}

{% block pagecontent %}
  <section class="content">
    <h3>Cards</h3>
  </section>

  {% for card in cards %}
    {% set cardSettings = {
      "cardHeader": "",
      "isPreview": true,
      "isVotable": true,
      "showArtworks": true
    } %}
    {{ include('card/card_template.twig') }}
  {% endfor %}
{% endblock %}