Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header.html « partials « layouts - github.com/EmielH/tale-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea0bd000ef06463a74eda7d7dfff85122cdbc40d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="{{.Site.Language}}"></html>

  {{ partial "head.html" . }}

  <body>
		<nav class="nav">
			<div class="nav-container">
			<a href="{{ .Site.BaseURL }}/">
				<h2 class="nav-title">{{ .Site.Title }}</h2>
			</a>
			<ul>
				<li><a href="{{ .Site.BaseURL }}about">About</a></li>
				<li><a href="{{ .Site.BaseURL }}">Posts</a></li>
			</ul>
			</div>
		</nav>