hugo-theme-hyde-hyde/layouts/partials/posts-list.html
2018-07-21 06:32:00 +10:00

10 lines
No EOL
259 B
HTML

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