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

7 lines
274 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 | markdownify }}</a></span>{{ if .Params.date }} -
<span>{{ .Date.Format (.Site.Params.dateFormat | default ":date_medium") }}</span>{{ end }}
</li>
2018-07-03 11:21:06 +00:00
{{ end }}