hugo-theme-hyde-hyde/layouts/partials/posts-list.html
2018-07-16 13:22:00 +10:00

10 lines
No EOL
270 B
HTML

{{ range . }}
<li>
<span class="list__title--small">
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{if not .Date.IsZero}}
<time class="list__date pull-right hidden-tablet">{{.Date.Format ("Jan 02 '06")}}</time>
{{end}}
</span>
</li>
{{ end }}