34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<f:layout name="Default" />
|
|
|
|
<!-- No extra heading from the parent layout -->
|
|
<f:section name="Header" />
|
|
|
|
<f:section name="Main">
|
|
<f:asset.css identifier="CBHero" href="{cb:assetPath()}/frontend.css" />
|
|
|
|
<div class="hero-inner">
|
|
<!-- Inline style with f:uri.resource to ensure correct path -->
|
|
<div class="hero">
|
|
<h2 class="hero-subheader">{data.subheader}</h2>
|
|
<h1 class="hero-title">{data.header}</h1>
|
|
<div class="hero-text">
|
|
<f:format.html>{data.bodytext}</f:format.html>
|
|
</div>
|
|
<div class="hero-social-icons">
|
|
<a href="https://instagram.com" class="social-icon"><i class="ci ci-instagram"></i></a>
|
|
<a href="https://tiktok.com" class="social-icon"><i class="ci ci-tiktok"></i></a>
|
|
</div>
|
|
<div class="hero-image-wrapper">
|
|
<f:if condition="{data.image}">
|
|
<f:then>
|
|
<f:image image="{data.image.0}" alt="Hero Image" class="hero-image" />
|
|
</f:then>
|
|
<f:else>
|
|
<p>No image available</p>
|
|
</f:else>
|
|
</f:if>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</f:section>
|