mediocre-blog/srv/src/api/tpl/index.html

29 lines
560 B
HTML
Raw Normal View History

{{ define "body" }}
<ul id="posts-list">
{{ range .Posts }}
<li>
<h2>
<a href="{{ .HTTPPath }}">{{ .Title }}</a>
</h2>
<span>{{ .PublishedAt.Format "2006-01-02" }}</span>
{{ if not .LastUpdatedAt.IsZero }}
<span>(Updated {{ .LastUpdatedAt.Format "2006-01-02" }})</span>
{{ end }}
<p>{{ .Description }}</p>
</li>
{{ end }}
</ul>
{{ end }}
2022-05-15 02:42:43 +00:00
{{ if ge .PrevPage 0 }}
<a href="?p={{ .PrevPage}}">Previous</a>
{{ end }}
{{ if ge .NextPage 0 }}
<a href="?p={{ .NextPage}}">Next</a>
{{ end }}
{{ template "base.html" . }}