mirror of
https://git.kittycat.homes/zoe/hugo-battheme.git
synced 2024-08-15 03:25:18 +00:00
20 lines
619 B
HTML
20 lines
619 B
HTML
{{ define "main" }}
|
|
<section id="main">
|
|
<header>
|
|
<h1 id="title" class="colorswitch">
|
|
<a href="../" class="colorswitch uplink">{{ .Title }}</a>
|
|
</h1>
|
|
</header>
|
|
<div>
|
|
<article id="content" class="colorswitch">
|
|
{{ .Content }}
|
|
<p>
|
|
{{ $currentPage := . }}
|
|
{{ range .Site.Menus.nav }}
|
|
<a class="hamburger-nav-item{{if or ($currentPage.IsMenuCurrent "nav" .) ($currentPage.HasMenuCurrent "nav" .) }} active{{end}} colorswitch" href="{{ .URL }}" title="{{ .Title }}">{{ .Name }} {{ .Title }}</a>
|
|
{{ end }}
|
|
</p>
|
|
</article>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|