ananke/layouts/post/summary.html

16 lines
401 B
HTML
Raw Normal View History

2017-04-15 04:05:32 +02:00
<div class="mb3 pa4 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">
2017-04-11 03:27:13 +02:00
{{ .Date.Format "January 2, 2006" }}
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="{{ .Permalink }}" 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>
</div>