morning-coffee/templates/index.html.tmpl

11 lines
214 B
Cheetah
Raw Normal View History

{{ define "content" }}
<ul id="items">
2024-09-21 17:09:43 +00:00
{{ range .Data }}
<li>
<a href="{{ .Url }}">{{ .Title }}</a>
<span>{{ .PublishedDate }}</span>
</li>
{{ end }}
</ul>
{{ end }}