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

header.html « chrome « layouts « multilingual « examples - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b99b2fbef94b4fd06a5d0160f3f200be6b500d55 (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
<header>
	<nav class="menu language-menu">
		<ul>
			<li><a href="/">English</a></li>
			<li><a href="/kodu">Eesti</a></li>
		</ul>
		<div class="clear"></div>
	</nav>

	{{ if (eq .Params.lang "et") }}
	<h1 class="title">Minu mitmekeelne leht</h1>
	{{ else }}
	<h1 class="title">My multilingual site</h1>
	{{ end }}
	
	<nav class="menu main-menu">
		<ul>
			{{ range (index .Site.Indexes.menu .Params.lang).Pages }}
			<li><a href="{{ .Permalink  }}">{{ .LinkTitle }}</a></li>
			{{ end }}
		</ul>
	</nav>
</header>

<h2 class="subtitle">{{ .Title }}</h2>