summaryrefslogtreecommitdiff
path: root/src/http/tpl/index.html
blob: ce5f2642d58bc90440772e5c6b008c1edd7c8ec3 (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
36
37
{{ 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: 5rem;">
    </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" . }}