Files
lena-schilling-website/packages/base/ContentBlocks/ContentElements/text/templates/frontend.html
Dominik Polakovics 06d2dddb1b
All checks were successful
Build / build (push) Successful in 4m18s
Build / deploy-stage (push) Successful in 2m44s
Build / switch-stage (push) Successful in 1m58s
feat: design changes
2024-12-16 14:09:03 +01:00

15 lines
470 B
HTML

<f:layout name="Default" />
<f:section name="Main">
<f:asset.css identifier="CBText" href="{cb:assetPath()}/frontend.css" />
<div>
<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>
</div>
</f:section>