ananke/layouts/post/summary.html

16 lines
397 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 }}
<date class="f6">
{{ .Date.Format "January 2, 2006" }}
</date>
{{ end }}
<h1 class="f3 near-black">
2017-04-11 05:48:09 +02:00
<a href="{{ .URL }}" 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>