s1llyw0rdz/web/handler/html/index.html
2025-11-21 03:35:22 -05:00

37 lines
1.7 KiB
HTML

{{ define "head" }}
<link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.atom" />
{{ end }}
{{ define "content" }}
<div class="home"><div class="cols"> <section>
{{ if .logged }}
<h2>Update your word count!</h2>
{{ if .form.Error }}
<p>{{ .form.Error }}</p>
{{ end }}
<form action="/add" method="post">
{{ .csrfField }}
{{ template "status_form" .status }}
</form>
<p>
<a href="/about/status-updater">word count updater</a> bookmarklet<br>
<a href="/current-status">word count widget</a> for your homepage
</p>
<p><img src="/users/{{ .logged }}/badge.png"/><br><textarea style="width: 100%; max-width: 500px; box-sizing: border-box;"><a href="https://sillywordz.kissing.computer/users/{{ .logged }}"><img src="https://sillywordz.kissing.computer/users/{{ .logged }}/badge.png" alt="Sillywordz Profile"/></a></textarea></p>
{{ else }}
<h2>Welcome!</h2>
<p>sillywordz is a place to share progress on your current writing projects.</p>
<p><a href="/register">Register now!</a></p>
{{ end }}
<p><img src="https://file.garden/aJzQmzrHVB4BLKwu/button(2).png"/><br><textarea style="width: 100%; max-width: 500px; box-sizing: border-box;"><a href="https://sillywordz.kissing.computer/"><img src="https://file.garden/aJzQmzrHVB4BLKwu/button(2).png" alt="Sillywordz"/></a></textarea></p></p>
</section>
<section>
<h2>Stream of updates!</h2>
{{ range .statuses }}
<article class="status">
{{ template "status" . }}
</article>
{{ end }}
</section>
</div></div>
{{ end }}