freedom/layouts/partials/header.html

23 lines
554 B
HTML
Raw Normal View History

2022-08-17 14:50:07 -04:00
<header>
2022-09-23 02:40:30 -04:00
<a href="{{.Site.BaseURL}}">
<img src="{{.Site.Params.default_img}}">
</a>
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}}
2023-03-23 10:51:02 -04:00
<a href="{{.RelPermalink}}"><h2>{{.Title}}</h2></a>
2022-08-17 14:50:07 -04:00
{{end}}
</nav>
2023-04-02 10:31:40 -04:00
<div>
<a href="{{.Site.BaseURL}}/index.xml">
<svg class="icon">
<use href="#rss"></use>
</svg>
</a>
</div>
2023-01-04 16:59:09 -05:00
</header>