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

6 lines
238 B
HTML
Raw Normal View History

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