takunomi-blog/templates/past.tmpl

10 lines
289 B
Cheetah
Raw Normal View History

2017-11-19 14:02:18 +00:00
{{define "past"}}
<article class="post">
2017-11-20 13:37:08 +00:00
<ul style="list-style: none;">
2017-11-19 14:02:18 +00:00
{{with .Posts}}
{{range .}}
2017-11-20 13:37:08 +00:00
<li><a class="no-link" style="text-decoration: none; color: inherit" href="/post/{{.URLTitle}}"><b>{{.Title}}</b></a> - {{.NormalDate}}</li>{{end}}{{end}}
2017-11-19 14:02:18 +00:00
</ul>
</article>
{{end}}