11 lines
483 B
HTML
11 lines
483 B
HTML
<li>
|
|
<time class="nobreak" datetime="{{ .Date | time.Format "2006-01-02" }}">{{ .Date | time.Format "January" }}</time>
|
|
<time class="nobreak" datetime="{{ .Date | time.Format "2006-01-02" }}">{{ .Date | time.Format "2" }}</time>
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
<div class="category">
|
|
{{ with index (.GetTerms "categories") 0 }}
|
|
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
|
|
{{ end }}
|
|
</div>
|
|
{{ partial "development/draft_tag.html" . }}
|
|
</li>
|