A fast and simple blog backend.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
mediocre-blog/src/http/tpl/posts.html

35 lines
730 B

{{ define "body" }}
{{ if ge .Payload.PrevPage 0 }}
<p>
<a href="?p={{ .Payload.PrevPage}}">&lt; &lt; Previous Page</a>
</p>
{{ else }}
<p>
Here you'll find an archive of all published posts. The content varies
almost as much as the quality!
</p>
{{ end }}
<ul>
{{ range .Payload.Posts }}
<li>
<strong><a href="{{ PostURL .ID }}">
{{ DateTimeFormat .PublishedAt }} / {{ .Title }}
</a></strong>
{{ if .Description }}
<br/><em>{{ .Description }}</em>
{{ end }}
</li>
{{ end }}
</ul>
{{ if ge .Payload.NextPage 0 }}
<p>
<a href="?p={{ .Payload.NextPage}}">Next Page &gt; &gt;</a>
</p>
{{ end }}
{{ end }}
{{ template "base.html" . }}