takunomi-blog/templates/past.tmpl

18 lines
464 B
Cheetah
Raw Normal View History

2017-11-19 14:02:18 +00:00
{{define "past"}}
<article class="post">
2021-03-09 20:10:26 +00:00
<ul style="width: max-content; list-style: none;">
2017-11-19 14:02:18 +00:00
{{with .Posts}}
{{range .}}
2021-03-09 20:10:26 +00:00
<li>
<div style="display: flex; justify-content: space-between; ">
<div style="padding-right: 20px">
<a class="no-link" style="text-decoration: none; color: inherit" href="/post/{{.URLTitle}}"><b>{{.Title}}</b></a>
</div>
<div>
{{.NormalDate}}
</div>
</div>{{end}}{{end}}
2017-11-19 14:02:18 +00:00
</ul>
</article>
{{end}}