kobel/layouts/partials/header.html

13 lines
377 B
HTML
Raw Normal View History

2023-12-25 22:14:57 +00:00
{{ with .Site.Params.header }}
<header id="header" 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 }}
{{ end }}
</div>
<a href="/#"><i class="icon-adjust"></i></a>
</header>
{{ end }}