hugo-theme-introduction/layouts/partials/blog/li.html

6 lines
268 B
HTML
Raw Normal View History

2018-07-03 11:21:06 +00:00
{{ range .Pages.ByPublishDate.Reverse }}
<li class="post-item">
<span><a href="{{ .Permalink }}">{{ .Title }}</a></span>{{ if .Params.date }} - <span>{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }}</span>{{ end }}
2018-07-03 11:21:06 +00:00
</li>
{{ end }}