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

navbar.html « partials « layouts - github.com/yursan9/manis-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0f97fa1b68498a7cae87aa6901e86c8f72a6288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<nav class="bar">
	<ul>
		{{- if not .IsHome -}}
		<li>
			<a href="/">
				<img class="icon-text" src="/img/prev.svg"/>
			</a>
		</li>
		{{- end -}}
		{{- range .Site.Menus.main -}}
		<li><a href="{{ .URL }}">{{ .Name | title }}</a></li>
		{{- end -}}
	</ul>
</nav>