jlelse
/
Indieroad
Archived
1
Fork 0
This repository has been archived on 2020-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
Indieroad/layouts/_default/summary.html

18 lines
471 B
HTML
Raw Normal View History

2019-09-03 15:50:00 +00:00
<article class="list-item h-entry">
2019-09-10 14:33:10 +00:00
<div class="list-header">
2019-11-19 08:22:33 +00:00
{{ if .Title }}
<a href="{{ .RelPermalink }}">
2019-09-03 15:50:00 +00:00
<h2 class="list-title p-name">{{ .Title }}</h2>
2019-09-10 14:33:10 +00:00
</a>
2019-11-19 08:22:33 +00:00
{{ end }}
{{ with partial "post_meta.html" . }}
2019-09-10 14:33:10 +00:00
<div class="list-meta">{{ . }}</div>
2019-11-19 08:22:33 +00:00
{{ end }}
2019-09-10 14:33:10 +00:00
</div>
<div class="list-excerpt p-summary">
{{ .Summary }}
</div>
<div class="list-footer">
2019-11-19 08:22:33 +00:00
<a class="u-url read-more" href="{{ .RelPermalink }}">{{ T "read_more" }}</a>
2019-09-10 14:33:10 +00:00
</div>
2019-09-03 15:50:00 +00:00
</article>