17 lines
464 B
HTML
17 lines
464 B
HTML
{{ 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>
|
|
<p><input tabindex=1 type="text" name="q" autocomplete=off> - xid
|
|
<p><button tabindex=1 name="fetch" value="fetch">fetch</button>
|
|
</form>
|
|
</div>
|
|
{{ range .Honkers }}
|
|
<section class="honk">
|
|
<p><a href="/h?xid={{ .XID }}">honks</a> by {{ .Handle }}
|
|
</section>
|
|
{{ end }}
|
|
</main>
|