honk/views/honk.html

96 lines
2.6 KiB
HTML
Raw Normal View History

<article class="honk {{ .Honk.Style }}" data-convoy="{{ .Honk.Convoy }}">
2019-06-20 21:15:50 +02:00
{{ $bonkcsrf := .BonkCSRF }}
2019-04-09 13:59:33 +02:00
{{ with .Honk }}
2019-04-29 01:16:24 +02:00
<header>
2019-09-09 20:09:50 +02:00
<img alt="" src="/a?a={{ .Honker}}">
2019-07-02 04:12:44 +02:00
{{ if .Oonker }}
2019-09-09 20:09:50 +02:00
<img alt="" src="/a?a={{ .Oonker}}">
2019-07-02 04:12:44 +02:00
{{ end }}
<p>
{{ if $bonkcsrf }}
<a href="/h?xid={{ .Honker }}" rel=noreferrer>{{ .Username }}</a>
{{ else }}
<a href="{{ .Honker }}" rel=noreferrer>{{ .Username }}</a>
{{ end }}
<span class="clip"><a href="{{ .URL }}" rel=noreferrer>{{ .What }}</a> {{ .Date.Format "02 Jan 2006 15:04" }}</span>
{{ if .Oonker }}
<br>
2019-06-03 05:57:36 +02:00
<span style="margin-left: 1em;" class="clip">
2019-07-10 05:41:13 +02:00
{{ if $bonkcsrf }}
original: <a href="/h?xid={{ .Oonker }}" rel=noreferrer>{{ .Oondle }}</a>
{{ else }}
original: <a href="{{ .Oonker }}" rel=noreferrer>{{ .Oondle }}</a>
{{ end }}
</span>
{{ else }}
2019-04-16 23:11:04 +02:00
{{ if .RID }}
<br>
2019-06-03 05:57:36 +02:00
<span style="margin-left: 1em;" class="clip">
2019-04-16 23:11:04 +02:00
in reply to: <a href="{{ .RID }}" rel=noreferrer>{{ .RID }}</a>
</span>
{{ end }}
{{ end }}
<br>
2019-06-20 21:15:50 +02:00
{{ if $bonkcsrf }}
2019-09-16 21:15:32 +02:00
<span style="margin-left: 1em;" class="clip">convoy: <a class="convoylink" href="/t?c={{ .Convoy }}">{{ .Convoy }}</a></span>
2019-06-20 21:15:50 +02:00
{{ else }}
<span style="margin-left: 1em;" class="clip">convoy: {{ .Convoy }}</span>
{{ end }}
2019-04-29 01:16:24 +02:00
</header>
2019-07-10 20:36:14 +02:00
<p>
<details class="noise" {{ .Open }} >
2019-09-18 21:08:50 +02:00
<summary>{{ .HTPrecis }}</summary>
<p>{{ .HTPrecis }}
<p>{{ .HTML }}
2019-04-09 13:59:33 +02:00
{{ range .Donks }}
{{ if .Local }}
2019-04-15 16:04:41 +02:00
{{ if eq .Media "text/plain" }}
<p><a href="/d/{{ .XID }}">Attachment: {{ .Name }}</a>
{{ else }}
<p><img src="/d/{{ .XID }}" title="{{ .Desc }}" alt="{{ .Desc }}">
2019-04-09 13:59:33 +02:00
{{ end }}
{{ else }}
2019-05-31 06:24:18 +02:00
{{ if .XID }}
<p><a href="{{ .URL }}">External Attachment: {{ .Name }}</a>
2019-05-31 06:24:18 +02:00
{{ else }}
{{ if eq .Media "video/mp4" }}
<p><video controls src="{{ .URL }}">{{ .Name }}</video>
2019-05-31 06:24:18 +02:00
{{ else }}
<p><img src="{{ .URL }}" title="{{ .Desc }}" alt="{{ .Desc }}">
2019-05-31 06:24:18 +02:00
{{ end }}
{{ end }}
{{ end }}
2019-04-09 13:59:33 +02:00
{{ end }}
2019-07-10 20:36:14 +02:00
</details>
2019-04-15 16:04:41 +02:00
{{ end }}
2019-06-20 21:15:50 +02:00
{{ if $bonkcsrf }}
2019-04-09 13:59:33 +02:00
<p>
2019-07-10 20:36:14 +02:00
<details class="actions">
<summary>Actions
</summary>
2019-04-26 15:07:13 +02:00
<div>
2019-06-02 21:33:01 +02:00
<p>
{{ if .Honk.Public }}
2019-08-24 02:43:30 +02:00
{{ if .Honk.IsBonked }}
<button onclick="unbonk(this, '{{ .Honk.XID }}');">unbonk</button>
{{ else }}
2019-06-16 00:46:00 +02:00
<button onclick="bonk(this, '{{ .Honk.XID }}');">bonk</button>
2019-08-24 02:43:30 +02:00
{{ end }}
{{ else }}
<button disabled>nope</button>
{{ end }}
<button onclick="showhonkform(this, '{{ .Honk.XID }}', '{{ .Honk.Handle }}');">honk back</button>
2019-06-16 00:46:00 +02:00
<button onclick="muteit(this, '{{ .Honk.Convoy }}');">mute</button>
<button onclick="zonkit(this, '{{ .Honk.XID }}');">zonk</button>
2019-08-19 06:01:00 +02:00
{{ if .Honk.IsAcked }}
<button onclick="deackit(this, '{{ .Honk.XID }}');">deack</button>
{{ else }}
2019-08-16 21:35:12 +02:00
<button onclick="ackit(this, '{{ .Honk.XID }}');">ack</button>
2019-08-19 06:01:00 +02:00
{{ end }}
2019-09-17 00:00:13 +02:00
<button><a href="/edit?xid={{ .Honk.XID }}">edit</a></button>
2019-04-26 15:07:13 +02:00
</div>
</details>
2019-04-26 15:07:13 +02:00
<p>
2019-04-09 13:59:33 +02:00
{{ end }}
2019-04-29 01:16:24 +02:00
</article>