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

single.html « _default « layouts - github.com/yursan9/manis-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 097bea7596430f70f9b080cc3c5ee36c8fababb4 (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
{{ partial "header" . }}
<article>
	<header>{{ partial "title" . }}</header>
	{{ .Content }}
	<nav class="no-print post-nav">
	{{ if .PrevInSection }}
		<a class="prev-post" href="{{ .PrevInSection.Permalink }}">
			<img class="icon-text" src="/img/prev.svg"/>
			{{- .PrevInSection.Title -}}
		</a>
	{{ end }}
	{{ if .NextInSection }}
		<a class="next-post" href="{{ .NextInSection.Permalink }}">
			{{- .NextInSection.Title -}}
			<img class="icon-text" src="/img/next.svg"/>
		</a>
	{{ end }}
	</nav>
</article>
{{ partial "related" . }}
{{ if in .Site.Params.DisqusSections .Section }}
	{{ partial "disqus" . }}
{{ end }}
{{ partial "footer" . }}