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: 1cda4bcfc897782befa4413f8b41728d0c61fb02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<ul class="font-serif flex-grow-0 flex justify-between flex-wrap md:flex-col">
	{{ if .Site.Menus.main }}
	{{ range .Site.Menus.main }}
	<li class="px-1 md:px-0">
		<a href="{{ .URL }}" title="{{ .Name }} page" {{ if in ($.Permalink| absURL ) (.URL|absURL) }}
			class="font-bold text-medium-red-violet-600 hover:text-medium-red-violet-400" {{ end }}>
			{{ .Name }}
		</a>
	</li>
	{{ end }}
	{{ if .OutputFormats.Get "RSS" }}
	<li>
		<a href='{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}'>RSS</a>
	</li>
	{{ end }}
	{{ end }}
</ul>