2023-09-24 08:46:30 -07:00
|
|
|
<li class="post">
|
|
|
|
<time class="nobreak" datetime="{{ .Date | time.Format "2006-01-02" }}">{{ .Date | time.Format "Jan 2, 2006" }}</time>
|
|
|
|
<h2 class="title"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
|
|
|
{{ if .Description }}
|
|
|
|
<p>{{ .Description }}</p>
|
|
|
|
{{ else if lt .WordCount 110 }}
|
|
|
|
<article>{{ .Content }}</article>
|
|
|
|
{{ else }}
|
|
|
|
{{ warnf "Post \"%s\" doesn't have a description or content suitable for the blog list" .Title }}
|
|
|
|
<p>{{ .WordCount }} words</p>
|
|
|
|
{{ end }}
|
|
|
|
{{ partial "footer_tags.html" . }}
|
2022-10-30 11:30:30 -07:00
|
|
|
{{ partial "development/draft_tag.html" . }}
|
2022-10-14 14:28:34 -07:00
|
|
|
</li>
|