bop-hugo-theme/layouts/partials/header.html

17 lines
329 B
HTML
Raw Normal View History

2020-10-14 01:00:50 +02:00
<header>
<h1>
<a href={{ .Site.BaseURL }}>{{ .Site.Title }}</a>
</h1>
{{ with .Site.Params.Description }}
{{ . }}
{{ end }}
<ul class="links">
{{ range .Site.Sections }}
<li class="link">
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</li>
{{ end }}
</ul>
</header>