summaryrefslogtreecommitdiff
path: root/src/http/tpl/posts.html
blob: e6d226b5ceb3a4c252c2c515b3849cc53a96c70f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{{ 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" . }}