Files
lena-schilling-website/packages/base/ContentBlocks/ContentElements/text/templates/frontend.html
Dominik Polakovics 696881e4f8
All checks were successful
Build / build (push) Successful in 4m0s
Build / deploy-stage (push) Successful in 2m50s
Build / switch-stage (push) Successful in 1m57s
feat: add content elements, change backend preview
2024-12-15 19:08:26 +01:00

12 lines
314 B
HTML

<f:layout name="Default" />
<f:section name="Main">
<f:if condition="{data.header}">
<f:then><h2>{data.header}</h2></f:then>
</f:if>
<f:if condition="{data.bodytext}">
<f:then>
<div class="text-bodytext"><f:format.html>{data.bodytext}</f:format.html></div>
</f:then>
</f:if>
</f:section>