Add headline to card

This commit is contained in:
c0de 2023-12-29 17:19:21 -06:00
parent 9fda7b5714
commit 4efdf5a674
1 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,9 @@
{% if this.description and this.description|length >= 1 %}
<div class="card-body">
{% if this.headline %}
<h5 class="card-title">{{ this.headline }}</h5>
{% endif %}
<p class="card-text">{{ this.description }}</p>
</div>
{% endif %}