kobel/layouts/partials/header.html

16 lines
480 B
HTML
Raw Normal View History

2023-12-25 22:14:57 +00:00
{{ with .Site.Params.header }}
2024-01-06 19:44:35 +00:00
<header id="header">
<div class="header">
<a class="home" href="/#"><i class="icon-home"></i></a>
<div class="items">
{{ if .links }}
{{ range .links }}
<a class="item" href="{{ .url }}">{{ .text }}</a>
{{ end }}
2023-12-25 22:14:57 +00:00
{{ end }}
2024-01-06 19:44:35 +00:00
</div>
<button id="theme-toggler"><i class="icon-adjust"></i></button>
2023-12-25 22:14:57 +00:00
</div>
</header>
{{ end }}
<span id="progress" class="progress"></span>