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

{% block subtitle %}
  Cards
{% endblock %}
{% block main %}
  <div style="align-content: center; text-align: center">
    <button onclick="location.href='/card/list'">List</button>
    <button onclick="location.href='/card/add'">Add</button>
    <h3>{% block pagetitle %}{% endblock %}</h3>
  </div>

  <div style="align-content: center;">
    {% block pagecontent %}{% endblock %}
  </div>
{% endblock %}