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

post-preview.html « partials « layouts - github.com/knadh/hugo-ink.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9e1765485c2935e871666f228b73a2f1c36dc20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="post-header">
	<div class="meta">
		<div class="date">
			<span class="day">{{ dateFormat "02" .Date }}</span>
			<span class="rest">{{ if $.Site.Data.month }}{{ index $.Site.Data.month (printf "%d" .Date.Month) }} {{ .Date.Year }}{{ else }}{{ dateFormat "Jan 2006" .Date }}{{ end }}</span>
		</div>
	</div>
	<div class="matter">
		<h4 class="title small">
			<a href="{{ .RelPermalink }}">{{.Title}}{{ if .Draft }}<sup class="draft-label">DRAFT</sup>{{ end }}</a>
		</h4>
		<span class="description">
			{{ if isset .Params "description" }}
				{{ .Description }}
			{{ else if gt (countrunes (.Content | plainify)) 120 }}
				{{ slicestr (.Content | plainify) 0 120 }}...
			{{ else }}
				{{ .Content | plainify }}
			{{ end }}
		</span>
	</div>
</div>