blob: 538c22d9ca0573efb030b82b54ab5b82e704ea34 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<div class="post-preview">
<a href="{{ .RelPermalink }}">
<h2 class="post-title">{{ .Title }}</h2>
{{ with .Params.subtitle }}
<h3 class="post-subtitle">{{ . }}</h3>
{{ end }}
<div class="post-content-preview">
{{ if isset .Params "description" }} {{ index .Params "description" }}
{{ else }}
{{ .Summary | plainify | truncate 180 }}
{{ end }}
</div>
</a>
<p class="post-meta">
Posted by {{ with $.Params.author }} {{ $.Params.author }} {{ else }} {{ .Site.Params.author }} {{ end }} on {{ .Date.Format "Mon, Jan 2, 2006" }}
</p>
</div>
<hr>
|