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/index.html

29 lines
626 B

{{ define "body" }}
{{ if ge .Payload.PrevPage 0 }}
<p>
<a href="?p={{ .Payload.PrevPage}}">&lt; &lt; Previous Page</a>
</p>
{{ else }}
<p>
Welcome to the Mediocre Blog! Posts are listed in chronological order. If
you aren't sure of where to start I recommend picking at random.
</p>
{{ end }}
<ul>
{{ range .Payload.Posts }}
<li>
<a href="{{ PostURL .ID }}">
{{ DateTimeFormat .PublishedAt }} / {{ .Title }}
</a>
{{ if .Description }}
<br/><em>{{ .Description }}</em>
{{ end }}
</li>
{{ end }}
</ul>
{{ end }}
{{ template "base.html" . }}