holy/layouts/_default/baseof.html

49 lines
1.4 KiB
HTML
Raw Normal View History

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