15 lines
496 B
HTML
15 lines
496 B
HTML
<f:layout name="Default" />
|
|
<f:section name="Main">
|
|
<f:asset.css identifier="CBText" href="{cb:assetPath()}/frontend.css" />
|
|
<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="text-bodytext"><f:format.html>{data.bodytext}</f:format.html></div>
|
|
</f:then>
|
|
</f:if>
|
|
</div>
|
|
</f:section>
|