honk/views/xzone.html

17 lines
464 B
HTML
Raw Permalink Normal View History

{{ template "header.html" . }}
<main>
<div class="info">
<form action="/ximport" method="POST">
<input type="hidden" name="CSRF" value="{{ .XCSRF }}">
<p><span class="title">import</span>
2023-03-27 18:47:48 +02:00
<p><input tabindex=1 type="text" name="q" autocomplete=off> - xid
2019-10-01 00:45:18 +02:00
<p><button tabindex=1 name="fetch" value="fetch">fetch</button>
</form>
</div>
{{ range .Honkers }}
<section class="honk">
2019-08-16 06:05:22 +02:00
<p><a href="/h?xid={{ .XID }}">honks</a> by {{ .Handle }}
</section>
{{ end }}
</main>