2026-02-13 16:02:25 +00:00
|
|
|
<.shop_layout {layout_assigns(assigns)}>
|
2026-02-17 08:01:32 +00:00
|
|
|
<main id="main-content" class="content-page">
|
2026-02-08 10:47:54 +00:00
|
|
|
<%= if assigns[:hero_background] do %>
|
|
|
|
|
<.hero_section
|
|
|
|
|
title={@hero_title}
|
|
|
|
|
description={@hero_description}
|
|
|
|
|
background={@hero_background}
|
|
|
|
|
/>
|
|
|
|
|
<% else %>
|
|
|
|
|
<.hero_section
|
|
|
|
|
variant={:page}
|
|
|
|
|
title={@hero_title}
|
|
|
|
|
description={@hero_description}
|
|
|
|
|
/>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2026-02-17 08:01:32 +00:00
|
|
|
<div class="content-body">
|
2026-02-08 10:47:54 +00:00
|
|
|
<%= if assigns[:image_src] do %>
|
2026-02-17 08:01:32 +00:00
|
|
|
<div class="content-image">
|
2026-02-08 10:47:54 +00:00
|
|
|
<.responsive_image
|
|
|
|
|
src={@image_src}
|
|
|
|
|
source_width={1200}
|
|
|
|
|
alt={@image_alt}
|
|
|
|
|
sizes="(max-width: 800px) 100vw, 800px"
|
2026-02-17 09:03:35 +00:00
|
|
|
class="content-hero-image"
|
2026-02-08 10:47:54 +00:00
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<.rich_text blocks={@content_blocks} />
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
2026-02-08 12:10:08 +00:00
|
|
|
</.shop_layout>
|