carrousel: add class to item title & item description (#44207)

This commit is contained in:
Thomas Jund 2020-06-18 11:25:22 +02:00
parent 7238a435cc
commit 6460cd2ae9
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@
<div class="carrousel-item-content">
{% block carrousel-item-content %}
<a href="{{menuitem.page.get_online_url}}">
<strong>{{ menuitem.page.title }}</strong>
{% if menuitem.page.description %}<p>{{ menuitem.page.description }}</p>{% endif %}
<strong class="carrousel-item-title">{{ menuitem.page.title }}</strong>
{% if menuitem.page.description %}<p class="carrousel-item-description">{{ menuitem.page.description }}</p>{% endif %}
</a>
{% endblock %}
</div>