morning-coffee/templates/index.html.tmpl

11 lines
242 B
Cheetah
Raw Permalink 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>{{ .GetLocalizedPublishedDate $.Meta.Location }}</span>
</li>
{{ end }}
</ul>
{{ end }}