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

39 lines
860 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 }}
<table>
<colgroup>
<col span="1" style="width: 6rem;">
<col span="1">
<col span="1" style="width: 50%;">
</colgroup>
{{ range .Payload.Posts }}
<tr>
<td>{{ DateTimeFormat .PublishedAt }}</td>
<td><a href="{{ PostURL .ID }}">{{ .Title }}</td>
<td><em>{{ .Description }}</em></td>
</tr>
{{ end }}
</table>
{{ if ge .Payload.NextPage 0 }}
<p>
<a href="?p={{ .Payload.NextPage}}">Next Page &gt; &gt;</a>
</p>
{{ end }}
{{ end }}
{{ template "base.html" . }}