holy/layouts/_default/baseof.html

50 lines
1.3 KiB
HTML
Raw Normal View History

2022-04-02 09:23:58 +00:00
<!DOCTYPE html>
<html>
2022-04-04 16:20:04 +00:00
{{- partial "head.html" . -}}
2022-04-07 21:11:20 +00:00
<body class="bg:gray-90@dark font:gray-15@dark">
2022-04-07 21:13:53 +00:00
<nav class="w:full h:90 fixed bg:gray-88@dark bg:white z:1000">
2022-04-04 16:20:04 +00:00
<div class="
h:full
w:full
max-w:1280
mx:auto
px:16
d:flex
align-items:center
">
<div class="mr:8">
2022-04-11 17:33:08 +00:00
<a href="/" class="mr-3 font:extralight">Holy</a>
</div>
<div>
{{ $currentPage := . }}
{{ $active := "" }}
{{ range .Site.Menus.main }}
{{ if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }}
{{ $active = "active" }}
{{ end }}
<a class="
font:semibold
font:gray-80
font:gray-60:hover
font:gray-40.active
px:8
{{ $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>
<div class="pt:90 px:16 max-w:1280 mx:auto">
{{- block "main" . }}{{- end }}
</div>
{{- partial "footer.html" . -}}
</body>
2022-04-02 09:23:58 +00:00
</html>