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
+17
View File
@@ -0,0 +1,17 @@
<header class="site-header">
<div class="container site-header__inner">
<a href="/" class="site-header__logo" aria-label="Fat Kiss home">
{{ partial "svg-logo.html" . }}
Fat Kiss
</a>
<button class="nav-toggle" aria-label="Toggle navigation" id="navToggle">
<span></span><span></span><span></span>
</button>
<nav class="site-header__nav" id="mainNav">
{{ $current := . }}
{{ range .Site.Menus.main }}
<a href="{{ .URL }}" {{ if $current.IsMenuCurrent "main" . }}class="active"{{ end }}>{{ .Name }}</a>
{{ end }}
</nav>
</div>
</header>