webseite/templates/macros/services_cards.html
muli 7b7529a1a2
All checks were successful
continuous-integration/drone/push Build is passing
feat: Services-Cards als Flow-Blocks realisiert. Inhalt damit über GUI editierbar.
2023-05-21 13:13:02 +02:00

12 lines
475 B
HTML

{% macro render_services_card(card, index) %}
<div class="services_card {% if index%2 %}-odd{% else %}-even{% endif %}">
<div class="services_card__image_box">
<img src="/{{ card.card_image }}" alt="" aria-hidden="true">
</div>
<div class="services_card__text_box">
<h2>{{ card.card_title }}</h2>
{{ card.card_text }}
</div>
</div>
{% endmacro %}