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

list.html « _default « layouts - github.com/softwareyoga/ronu-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 749b34313b4ab68937b23cb8022ba9a83a00e619 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" }}
	{{ $paginator := .Paginate (.Pages) }}

	{{ range $paginator.Pages }}
		<h1>{{ .Title }}{{ if .Draft }} ::Draft{{ end }}</h1>
		<p>{{ .Description | plainify | safeHTML }}
		<a href="{{ .Permalink }}"> Read More.</a></p>
	{{ end }}

	{{ partial "pagination.html" . }}
{{ end }}