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: 6a35401b9d326204672cd5041b60b48fb7fa9c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
		<div class="links">
			<a href="/">Home</a>
			{{ range first 1 (where .Site.Pages "Type" "post") }}
				<a href="/post/">Archive</a>
			{{ end }}
			{{ range where .Site.Pages "Section" "pages" }}
				<a href="{{ .RelPermalink }}">{{ .Title }}</a>
			{{ end }}
			<a href="#top">Top</a>
		</div>
		{{ partial "foot.html" . }}
		{{ if .Site.Copyright }}
		<p id="copyright">
			{{ .Site.Copyright }}
		</p>
		{{ end }}
	</body>
</html>