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

footer.html « partials « layouts - github.com/tblyler/light-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff3e76cfe3fd992b311f36408f3a66ef23f20881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
		<div class="links">
			<a href="{{ .Site.BaseURL }}">Home</a>
			{{ range first 1 (where .Site.Pages "Type" "post") }}
				<a href="{{ .Site.BaseURL }}/post/">Archive</a>
			{{ end }}
			{{ range where .Site.Pages "Type" "!=" "post" }}
				<a href="{{ .Permalink }}">{{ .Title }}</a>
			{{ end }}
			<a href="#top">Top</a>
		</div>
	</body>
</html>