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

single.html « _default « layouts - github.com/J-Siu/hugo-theme-sk1.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ce0fa888c22c4d07189fd423d42a0456c0ca3f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{{define "main"}}

<h2>{{.Title}}</h2>
{{.Date.Format "2006-01-30"}}
{{.TableOfContents}}
{{.Content}}

<ul>
	{{range (.GetTerms "tags")}}
		<li><a href="{{.RelPermalink}}">{{.LinkTitle}}</a></li>
	{{end}}
</ul>

{{with .PrevInSection}}<a href="{{.RelPermalink}}">{{.Title}}</a>{{end }}
{{with .NextInSection}}<a href="{{.RelPermalink}}">{{.Title}}</a>{{end }}

{{$related := .Site.RegularPages.Related . | first 5}}
{{with $related}}
<h3>See Also</h3>
<ul>
	{{range .}}
		<li><a href="{{.RelPermalink}}">{{.Title}}</a></li>
	{{end}}
</ul>
{{end}}

{{end}}