summaryrefslogtreecommitdiff
path: root/templates/card.html
blob: 1397bc867635e6373478ad3688474a252ddfa3e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="card">
    <h2>
        {% block title %}
        Card Title
        {% endblock %}
    </h2>

    <p>
        {% block content %}
        Stuff in the card
        {% endblock %}
    </p>

</div>