hugo-theme-hyde-hyde/layouts/partials/posts-list.html

10 lines
259 B
HTML
Raw Normal View History

2018-07-16 03:22:00 +00:00
{{ range . }}
<li>
<span class="list__title--small">
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{if not .Date.IsZero}}
2018-07-20 20:32:00 +00:00
<time class="pull-right hidden-tablet">{{.Date.Format ("Jan 02 '06")}}</time>
2018-07-16 03:22:00 +00:00
{{end}}
</span>
</li>
{{ end }}