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: 6f00f62b5b27f3fee83a54be2a3d5d4434b0fc61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode | default "en" }}">

  {{ 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">{{ i18n "about" }}</a></li>
				<li><a href="{{ .Site.BaseURL }}">{{ i18n "posts" }}</a></li>
			</ul>
			</div>
		</nav>