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

	<!-- title wrapper -->
	<div class="title-wrapper">
		<a href="/">
			<h2 class="title" >{{ .Site.Title }}</h2>
		</a>
		<nav>
			<ul>
				<li><a class="{{ cond (eq .Title "Projects") "active-link" ""}}" href="/projects/">projects</a></li>
				<li><a
						href="https://artifacts.gabrielgio.me/cv/cv.pdf"
						target="_blank">
						resume</i>
					</a>
				</li>
		</nav>
	</div>
	{{ with .Site.Menus.main }}
	<nav>
		<ul>
			{{ range . }}
			<li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
			{{ end }}
		</ul>
	</nav>
	{{ end }}
</header>