freedom/layouts/partials/header.html

14 lines
342 B
HTML
Raw Normal View History

2022-08-17 14:50:07 -04:00
<header>
2022-08-22 20:03:48 -04:00
<img src="{{.Site.Data.details.logo}}">
<div>
<h1>{{.Site.Data.details.name }}</h1>
<i>{{.Site.Data.details.description}}</i>
</div>
2022-08-17 14:50:07 -04:00
<nav>
2022-08-22 20:03:48 -04:00
<a href="/"><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>