views/honk.html (view raw)
1<article class="honk {{ .Honk.Style }}" data-convoy="{{ .Honk.Convoy }}">
2{{ $bonkcsrf := .BonkCSRF }}
3{{ with .Honk }}
4<header>
5<img alt="" src="/a?a={{ .Honker}}">
6{{ if .Oonker }}
7<img alt="" src="/a?a={{ .Oonker}}">
8{{ end }}
9<p>
10{{ if $bonkcsrf }}
11<a class="honkerlink" href="/h?xid={{ .Honker }}">{{ .Username }}</a>
12{{ else }}
13<a href="{{ .Honker }}" rel=noreferrer>{{ .Username }}</a>
14{{ end }}
15<span class="clip"><a href="{{ .URL }}" rel=noreferrer>{{ .What }}</a> {{ .Date.Format "02 Jan 2006 15:04" }}</span>
16{{ if .Oonker }}
17<br>
18<span style="margin-left: 1em;" class="clip">
19{{ if $bonkcsrf }}
20original: <a class="honkerlink" href="/h?xid={{ .Oonker }}">{{ .Oondle }}</a>
21{{ else }}
22original: <a href="{{ .Oonker }}" rel=noreferrer>{{ .Oondle }}</a>
23{{ end }}
24</span>
25{{ else }}
26{{ if .RID }}
27<br>
28<span style="margin-left: 1em;" class="clip">
29in reply to: <a href="{{ .RID }}" rel=noreferrer>{{ .RID }}</a>
30</span>
31{{ end }}
32{{ end }}
33<br>
34{{ if $bonkcsrf }}
35<span style="margin-left: 1em;" class="clip">convoy: <a class="convoylink" href="/t?c={{ .Convoy }}">{{ .Convoy }}</a></span>
36{{ else }}
37<span style="margin-left: 1em;" class="clip">convoy: {{ .Convoy }}</span>
38{{ end }}
39</header>
40<p>
41<details class="noise" {{ .Open }} >
42<summary>{{ .HTPrecis }}<p></summary>
43<p>{{ .HTPrecis }}
44<p>{{ .HTML }}
45{{ with .Time }}
46<p>Time: {{ .StartTime.Local.Format "03:04PM EDT Mon Jan 02"}}
47{{ end }}
48{{ with .Place }}
49<p>Location: {{ with .Url }}<a href="{{ . }}" rel=noreferrer>{{ end }}{{ .Name }}{{ if .Url }}</a>{{ end }} <a href="https://www.openstreetmap.org/?mlat={{ .Latitude }}&mlon={{ .Longitude}}" rel=noreferrer>{{ .Latitude }} {{ .Longitude }}</a>
50{{ end }}
51{{ range .Donks }}
52{{ if .Local }}
53{{ if eq .Media "text/plain" }}
54<p><a href="/d/{{ .XID }}">Attachment: {{ .Name }}</a>
55{{ else }}
56<p><img src="/d/{{ .XID }}" title="{{ .Desc }}" alt="{{ .Desc }}">
57{{ end }}
58{{ else }}
59{{ if .XID }}
60<p><a href="{{ .URL }}">External Attachment: {{ .Name }}</a>
61{{ else }}
62{{ if eq .Media "video/mp4" }}
63<p><video controls src="{{ .URL }}">{{ .Name }}</video>
64{{ else }}
65<p><img src="{{ .URL }}" title="{{ .Desc }}" alt="{{ .Desc }}">
66{{ end }}
67{{ end }}
68{{ end }}
69{{ end }}
70</details>
71{{ end }}
72{{ if $bonkcsrf }}
73<p>
74<details class="actions">
75<summary>Actions
76</summary>
77<div>
78<p>
79{{ if .Honk.Public }}
80{{ if .Honk.IsBonked }}
81<button onclick="unbonk(this, '{{ .Honk.XID }}');">unbonk</button>
82{{ else }}
83<button onclick="bonk(this, '{{ .Honk.XID }}');">bonk</button>
84{{ end }}
85{{ else }}
86<button disabled>nope</button>
87{{ end }}
88<button onclick="showhonkform(this, '{{ .Honk.XID }}', '{{ .Honk.Handle }}');">honk back</button>
89<button onclick="muteit(this, '{{ .Honk.Convoy }}');">mute</button>
90<button onclick="zonkit(this, '{{ .Honk.XID }}');">zonk</button>
91{{ if .Honk.IsAcked }}
92<button onclick="deackit(this, '{{ .Honk.XID }}');">deack</button>
93{{ else }}
94<button onclick="ackit(this, '{{ .Honk.XID }}');">ack</button>
95{{ end }}
96<button><a href="/edit?xid={{ .Honk.XID }}">edit</a></button>
97</div>
98</details>
99<p>
100{{ end }}
101</article>