freedom/layouts/partials/header.html

14 lines
338 B
HTML
Raw Normal View History

2022-08-17 14:50:07 -04:00
<header>
2022-09-16 16:04:37 -04:00
<img src="{{.Site.Params.default_img}}">
2022-08-22 20:03:48 -04:00
<div>
2022-09-15 17:12:24 -04:00
<h1>{{.Site.Title }}</h1>
<i>{{.Site.Params.subtitle}}</i>
2022-08-22 20:03:48 -04:00
</div>
2022-08-17 14:50:07 -04:00
<nav>
2022-09-17 19:22:55 -04:00
<a href="{{.Site.BaseURL}}"><h2>Home</h2></a>
2022-08-17 14:50:07 -04:00
{{ range .Site.Sections}}
2022-08-22 20:03:48 -04:00
<a href="{{.Permalink}}"><h2>{{.Title}}</h2></a>
2022-08-17 14:50:07 -04:00
{{end}}
</nav>
2022-08-22 20:03:48 -04:00
2022-08-17 14:50:07 -04:00
</header>