Initial commit: Fat Kiss site — Hugo + Decap CMS

This commit is contained in:
2026-05-11 08:19:27 -10:00
commit aa0287eeaa
58 changed files with 3774 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{{ define "main" }}
<article class="page-enter">
<section class="section">
<div class="container">
<p class="section__label">Products</p>
<h1 class="section__title">The Balms</h1>
<p class="section__body">Rich, natural balm rituals for skin that lives, works, glows, and keeps going.</p>
</div>
</section>
<section class="section">
<div class="container">
<div class="grid-3">
{{ range .Pages }}
{{ partial "product-card.html" . }}
{{ end }}
</div>
</div>
</section>
</article>
{{ end }}