s1llyw0rdz/web/handler/html/index.html

29 lines
1,020 B
HTML
Raw Normal View History

2021-11-22 09:06:23 +00:00
{{ define "content" }}
2021-11-22 20:23:30 +00:00
<div class="cols">
<section>
<h2>Set your status</h2>
{{ if .form.Error }}
<p>{{ .form.Error }}</p>
{{ end }}
2021-11-28 07:40:11 +00:00
{{ template "flash" .flash }}
<form action="/add" method="post">
2021-11-22 20:23:30 +00:00
<div class="field">
2021-11-26 22:36:48 +00:00
<textarea name="content" maxlength="140" placeholder="What's new?" required style="width: 100%; box-sizing: border-box; height: 100px;" autofocus></textarea>
2021-11-22 20:23:30 +00:00
</div>
<input type="submit" value="Submit">
2021-11-28 21:38:08 +00:00
<ul class="tools">
<li>Install the <a href="/about/status-updater">status updater</a> bookmarklet</li>
<li>Add the <a href="/current-status">current status widget</a> to your homepage</li>
</ul>
2021-11-22 20:23:30 +00:00
</form>
</section>
<section>
<h2>Status stream</h2>
{{ range .statuses }}
2021-11-27 09:39:34 +00:00
<article class="status">
{{ template "status" . }}
</article>
2021-11-22 20:23:30 +00:00
{{ end }}
</section>
</div>
2021-11-22 09:06:23 +00:00
{{ end }}