16 lines
555 B
HTML
16 lines
555 B
HTML
<f:layout name="Default" />
|
|
<f:section name="Main">
|
|
<div class="fade-in-on-scroll">
|
|
<f:if condition="{data.header}">
|
|
<f:then><h2 class="font-hajime text-primary font-normal leading-none text-3xl md:text-5xl mb-4">{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>
|