Files
cocoa-eh-hugo-theme/layouts/partials/li.html
Michael Noronha 295f25a67d Add label for drafts in the UI
This makes it easier to see what a blog will look like when it's
published, and decreases the possibility of confusion when trying to
publish a post.
2018-08-18 13:46:27 -07:00

9 lines
285 B
HTML

<li class="post-item">
<span class="meta">{{ .Date.Format .Site.Params.dateform }}</span>
{{ if .Params.draft }}
<a href="{{ .Permalink }}"><span>Draft::{{ .Title }}</span></a>
{{ else }}
<a href="{{ .Permalink }}"><span>{{ .Title }}</span></a>
{{ end }}
</li>