Compare commits

...

2 Commits

Author SHA1 Message Date
c0de 31c761a991 Show card loading for example 2023-12-29 17:19:46 -06:00
c0de 4efdf5a674 Add headline to card 2023-12-29 17:19:21 -06:00
2 changed files with 4 additions and 1 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 %}

View File

@ -4,7 +4,7 @@
{% for this in gallery_items %}
{% include 'card.html' %}
{# include 'card_loading.html' #}
{% include 'card_loading.html' %}
{% endfor %}
</div>