aboutsummaryrefslogtreecommitdiff
path: root/static/archive.html
blob: 8420b9716c93b1c1f43214fa9814f359616e4ef7 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{{ define "header" }}
<title>/{{ .Board.Name }}/ - Archive</title>
<meta name="description" content="{{ (index .Posts 0).Content }}">
<meta property="og:url" content="{{ (index .Posts 0).Id }}">
<meta property="og:site_name" content="{{ .Instance.PreferredUsername }}" />

<meta property="og:title" content="{{ (index .Posts 0).Name }}">
<meta property="og:description" content="{{ (index .Posts 0).Content }}">

<meta name="twitter:title" content="{{ (index .Posts 0).Name }}">
<meta name="twitter:description" content="{{ (index .Posts 0).Content }}">
<meta name="twitter:card" content="summary_large_image">

{{ if (index .Posts 0).Preview }}
<meta property="og:image" content="{{ (index .Posts 0).Preview.Href }}" />
<meta name="twitter:image" content="{{ (index .Posts 0).Preview.Href }}" />
{{ end }}

<script src="/static/js/posts.js"></script>
{{ end }}

{{ define "top" }}
<h1 style="text-align: center;">/{{ .Board.Name }}/ - {{ .Board.PrefName }}</h1>
<p style="text-align: center;">{{ .Board.Summary }}</p>
<h1 style="text-align: center;">Archived Posts</h1>
{{ end }}

{{ define "content" }}
{{ $board := .Board }}

<hr>
<ul id="navlinks">
  <li>[<a href="/{{ $board.Name }}">Return</a>]</li>
  <li>[<a href="/{{ $board.Name }}/catalog">Catalog</a>]</li>
  <li>[<a href="#bottom">Bottom</a>]</li>
  <li>[<a href="javascript:location.reload()">Refresh</a>]</li>
</ul>
<hr>

<table align="center" style="table-layout:fixed; width:90%;">
  <tr>
    {{ if eq $board.ModCred $board.Domain $board.Actor.Id }}
    <th style="width: 45px;"></th>
    {{ end }}
    <th style="width: 110px">No.</th>
    <th>Excerpt</th>
    <th style="width: 60px;"></th>
  </tr>
  {{ range $i, $e := .Posts }}
  {{ if mod $i 2 }}
  <tr class="box-alt">
    {{ if eq $board.ModCred $board.Domain $board.Actor.Id }}
    <td>[<a href="/poparchive?id={{ $e.Id }}&board={{ $board.Name }}">Pop</a>]</td>
    {{ end }}
    <td>{{ short $board.Actor.Outbox $e.Id }}</td>
    <td style="overflow: hidden; word-wrap: break-word; text-overflow: ellipsis;">{{ shortExcerpt $e }}</td>
    <td style="text-align: center;">[<a href="/{{ $board.Actor.Name }}/{{ short $board.Actor.Outbox $e.Id }}">View</a>]</td>
  </tr>
  {{ else }}
  <tr class="box">
    {{ if eq $board.ModCred $board.Domain $board.Actor.Id }}
    <td>[<a href="/poparchive?id={{ $e.Id }}">Pop</a>]</td>
    {{ end }}
    <td>{{ short $board.Actor.Outbox $e.Id }}</td>
    <td style="overflow: hidden; word-wrap: break-word; text-overflow: ellipsis;">{{ shortExcerpt $e }}</td>
    <td style="text-align: center;">[<a href="/{{ $board.Actor.Name }}/{{ short $board.Actor.Outbox $e.Id }}">View</a>]</td>
  </tr>
  {{ end }}
  {{ end }}
</table>

<hr>

<ul id="navlinks">
  <li>[<a href="/{{ $board.Name }}">Return</a>]</li>
  <li>[<a href="/{{ $board.Name }}/catalog">Catalog</a>]</li>
  <li>[<a id="bottom" href="#top">Top</a>]</li>
  <li>[<a href="javascript:location.reload()">Refresh</a>]</li>
</ul>

<hr>

{{ end }}

{{ define "script" }}
<script src="/static/js/footerscript.js"></script>
<script>
  viewLink("{{ .Board.Name }}", "{{ .Board.Actor.Id }}")
</script>
{{ end }}