webseite/templates/blocks/flow_boxes_section.html

30 lines
1.1 KiB
HTML
Raw Normal View History

2021-03-18 02:11:05 +01:00
<!-- Icon boxes - start -->
<section class="content">
<div class="content__box">
<div class="content__inner_box -card_box_head">
<div class="flex_heading">
2021-03-18 02:31:17 +01:00
<h2>{{ this.title }}</h2>
2021-03-18 02:11:05 +01:00
</div>
<div class="claim">
<div class="claim__background_box">
2021-03-18 02:31:17 +01:00
<h2>{{ this.background_box_title }}</h2>
<div class="claim__text">
{{ this.background_box_claim }}
</div>
2021-03-18 02:11:05 +01:00
</div>
2021-03-18 02:31:17 +01:00
<button class="claim__button"><a class="claim__button_link" href="{{ this.claim__background_url }}">{{ this.claim__background_link }}</a></button>
2021-03-18 02:11:05 +01:00
</div>
</div>
</div>
<div class="content__box -card_box -homepage">
<div class="content__inner_box -card_box">
2021-03-18 02:50:41 +01:00
{% for card in this.claim_boxes.blocks %}
{{ card }}
{% endfor %}
2021-03-18 02:11:05 +01:00
</div>
</div>
</section>
<!-- Icon boxes - start -->