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

site-navigation.html « partials « layouts - github.com/heyeshuang/hugo-theme-tokiwa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e7601ea3d08b8d6b63675e3d8d40ef6dca7acc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
	<ul class="font-serif flex-grow-0 flex justify-between flex-wrap md:flex-col">
		{{ if .Site.Menus.main }}
		{{ range .Site.Menus.main }}
		<li>
			<a href="{{ .URL }}" title="{{ .Name }} page">
				{{ .Name }}
			</a>
		</li>
		{{ end }}
		{{ if .OutputFormats.Get "RSS" }}
		<li>
			<a href='{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}'>RSS</a>
		</li>
		{{ end }}
		{{ end }}
	</ul>