2022-04-02 09:23:58 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2022-04-04 16:20:04 +00:00
|
|
|
{{- partial "head.html" . -}}
|
|
|
|
|
2022-04-11 20:09:26 +00:00
|
|
|
<body class="bg:fade-90@dark font:fade-15@dark">
|
|
|
|
<nav class="w:full h:90 fixed bg:fade-90/.95@dark bg:white z:1000">
|
2022-04-04 16:20:04 +00:00
|
|
|
<div class="
|
|
|
|
h:full
|
|
|
|
w:full
|
2022-04-11 20:09:26 +00:00
|
|
|
max-w:1200
|
2022-04-04 16:20:04 +00:00
|
|
|
mx:auto
|
2022-04-11 20:09:26 +00:00
|
|
|
px:32
|
2022-04-04 16:20:04 +00:00
|
|
|
d:flex
|
|
|
|
align-items:center
|
|
|
|
">
|
2022-04-11 20:09:26 +00:00
|
|
|
<div>
|
2022-04-11 17:33:08 +00:00
|
|
|
<a href="/" class="mr-3 font:extralight">Holy</a>
|
|
|
|
</div>
|
|
|
|
|
2022-04-11 20:09:26 +00:00
|
|
|
<div class="ml:auto">
|
2022-04-11 17:33:08 +00:00
|
|
|
{{ $currentPage := . }}
|
|
|
|
{{ $active := "" }}
|
|
|
|
|
|
|
|
{{ range .Site.Menus.main }}
|
|
|
|
{{ if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }}
|
|
|
|
{{ $active = "active" }}
|
|
|
|
{{ end }}
|
|
|
|
<a class="
|
|
|
|
font:semibold
|
2022-04-11 20:09:26 +00:00
|
|
|
font:fade-70
|
|
|
|
font:fade-10:hover
|
|
|
|
font:fade-30.active
|
2022-04-11 17:33:08 +00:00
|
|
|
px:8
|
2022-04-11 20:09:26 +00:00
|
|
|
transition:150ms;ease-in
|
2022-04-11 17:33:08 +00:00
|
|
|
{{ $active }}
|
|
|
|
" href="{{ .URL }}" title="{{ .Title }}">
|
|
|
|
{{ .Name }}
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
2022-04-04 16:20:04 +00:00
|
|
|
</div>
|
2022-04-02 09:23:58 +00:00
|
|
|
</div>
|
2022-04-04 16:20:04 +00:00
|
|
|
</nav>
|
|
|
|
|
2022-04-11 20:09:26 +00:00
|
|
|
<div class="pt:90 px:32 max-w:700 box:content-box mx:auto">
|
2022-04-04 16:20:04 +00:00
|
|
|
{{- block "main" . }}{{- end }}
|
2022-04-11 20:09:26 +00:00
|
|
|
{{- partial "footer.html" . -}}
|
2022-04-04 16:20:04 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
2022-04-11 17:33:41 +00:00
|
|
|
</html>
|