aboutsummaryrefslogtreecommitdiff
path: root/themes/flamingo/layouts/partials/header.html
blob: f45fb9b0dee7d0f8efc01dde1019fe4556e92265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<header>

	<!-- title wrapper -->
	<div class="title-wrapper">
		<a href="/">
			<h2 class="title" >{{ .Site.Title }}</h2>
		</a>
		<nav>
			<ul>
				<li><a class="{{ cond (eq .Title "Posts") "active-link" ""}}" href="/posts/">posts</a></li>
				<li><a class="{{ cond (eq .Title "Logs") "active-link" ""}}" href="/logs/">logs</a></li>
		</nav>
	</div>
	{{ with .Site.Menus.main }}
	<nav>
		<ul>
			{{ range . }}
			<li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
			{{ end }}
		</ul>
	</nav>
	{{ end }}
</header>