hugo-whisper-theme/layouts/_default/summary.html

8 lines
265 B
HTML
Raw Normal View History

2019-02-17 08:43:41 +00:00
<div class="summary mb-2">
2019-02-17 06:55:16 +00:00
{{ if .Params.image }}
<img alt="{{ .Title }}" src="{{ .Params.image }}" />
{{ end}}
2019-02-17 08:43:41 +00:00
<h2 class="title-summary"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
2019-06-24 16:56:35 +00:00
<p>{{ htmlUnescape .Content | plainify | truncate 140 }}</p>
</div>