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

list.html « _default « layouts - github.com/bake/solar-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d77872e0e5b125370b469a12e3b03d290995c2e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "main" }}
	{{ range .Paginator.Pages }}
		<article class="post">
			<h1><a href="{{ .Permalink }}">{{ .Title }}</a> {{ if .Draft }}(Draft){{ end }}</h1>

			<div class="post-content">
				<p>{{ .Summary | plainify | safeHTML }} {{ if .Truncated }} … {{ end }}</p>
			</div>

			<p class="meta">Posted on <span class="postdate">{{ .Date.Format "02. January 2006" }}</span></p>
		</article>
	{{ end }}

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