takunomi-blog/past.tmpl

10 lines
237 B
Cheetah

{{define "past"}}
<article class="post">
<ul>
{{with .Posts}}
{{range .}}
<li><a class="no-link" style="text-decoration: none; color: inherit" href="/post/{{.URLTitle}}">{{.Title}}</a></li>{{end}}{{end}}
</ul>
</article>
{{end}}