ananke/layouts/post/summary.html

17 lines
677 B
HTML
Raw Normal View History

<div class="mb3 pa4 {{ $.Param "text_color" | default "mid-gray" }} overflow-hidden">
2017-04-11 03:27:13 +02:00
{{ if .Date }}
2017-04-19 02:16:27 +02:00
<div class="f6">
{{ .Date | time.Format (default "January 2, 2006" .Site.Params.date_format) }}
2017-04-19 02:16:27 +02:00
</div>
2017-04-11 03:27:13 +02:00
{{ end }}
<h1 class="f3 near-black">
<a href="{{ .RelPermalink }}" class="link black dim">
2017-04-11 03:27:13 +02:00
{{ .Title }}
</a>
</h1>
2017-04-18 01:02:51 +02:00
<div class="nested-links f5 lh-copy nested-copy-line-height">
{{ .Summary }}
2017-04-11 03:27:13 +02:00
</div>
<a href="{{.RelPermalink}}" class="ba b--moon-gray bg-light-gray br2 color-inherit dib f7 hover-bg-moon-gray link mt2 ph2 pv1">{{ $.Param "read_more_copy" | default (i18n "readMore") }}</a>
2017-04-11 03:27:13 +02:00
</div>