takunomi-blog/templates/past.tmpl

18 lines
442 B
Cheetah

{{define "past"}}
<article class="post">
<ul style="width: max-content; list-style: none;">
{{with .Posts}}
{{range .}}
<li>
<div style="display: flex; justify-content: space-between; ">
<div style="padding-right: 20px">
<a class="no-link" style="text-decoration: none;" href="/post/{{.URLTitle}}">{{.Title}}</a>
</div>
<div>
{{.NormalDate}}
</div>
</div>{{end}}{{end}}
</ul>
</article>
{{end}}