webseite/templates/blocks/flow_boxes_section.html
L3D fd742c7049 redesign website (!1)
Co-authored-by: L3D <l3d@see-base.de>
Reviewed-on: https://backwesen.de/c3woc/webseite/pulls/1
2022-05-18 00:35:37 +02:00

33 lines
1.2 KiB
HTML

{#- Icon boxes #}
<!-- Icon boxes - start -->
<section class="content">
<div class="content__box">
<div class="content__inner_box -card_box_head">
<div class="flex_heading">
<h2>{{ this.title }}</h2>
</div>
<div class="claim">
<div class="claim__background_box">
<h2 id="{{ this.background_box_title | lower}}">{{ this.background_box_title }}</h2>
<div class="claim__text">
{{ this.background_box_claim -}}
{%- for card in this.upper_claim_boxes.blocks -%}
{{- card -}}
{%- endfor -%}
</div>
</div>
<button class="claim__button">
<a class="claim__button_link" href="{{ this.claim__background_url }}">{{ this.claim__background_link }}</a>
</button>
</div>
</div>
</div>
<div class="content__box -card_box -homepage">
<div class="content__inner_box -card_box">
{%- for card in this.claim_boxes.blocks -%}
{{- card -}}
{%- endfor -%}
</div>
</div>
</section>
<!-- Icon boxes - start -->