Files
dialog-relations-website/packages/base/ContentBlocks/ContentElements/text/templates/frontend.html
Dominik Polakovics 41e44d1ed2
All checks were successful
Build / build (push) Successful in 4m20s
Build / deploy-stage (push) Successful in 3m13s
Build / switch-stage (push) Successful in 2m9s
feat: many changes
2025-04-22 20:31:39 +02:00

16 lines
471 B
HTML

<f:layout name="Default" />
<f:section name="Main">
<div class="fade-in-on-scroll">
<f:if condition="{data.header}">
<f:then><h2>{data.header}</h2></f:then>
</f:if>
<f:if condition="{data.bodytext}">
<f:then>
<div class="max-w-3xl prose lg:prose-lg">
<f:format.html>{data.bodytext}</f:format.html>
</div>
</f:then>
</f:if>
</div>
</f:section>