Creates re-usable template for cards

This commit is contained in:
Mouse Reeve
2021-01-16 14:04:09 -08:00
parent 8c4e652b2f
commit d6dc975a2e
2 changed files with 94 additions and 88 deletions

View File

@ -0,0 +1,19 @@
<article class="card">
<header class="card-header">
{% block card-header %}
{% endblock %}
</header>
<section class="card-content">
{% block card-content %}
{% endblock %}
</section>
<footer class="card-footer has-background-white-bis">
{% block card-footer %}
{% endblock %}
</footer>
{% block card-bonus %}
{% endblock %}
</article>