minty-cafe/web/handler/html/index.html

40 lines
1.7 KiB
HTML
Raw Normal View History

2026-03-11 19:14:41 +00:00
{{ define "head" }}
<link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.atom" />
{{ end }}
{{ define "content" }}
<div class="cols">
<section>
{{ if .logged }}
<h2>Set your status</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">status updater</a> bookmarklet<br>
<a href="/current-status">status widget</a> for your homepage THESE WILL HAVE BUTTONS SOON I PROMMY
</p>
<p><img src="/users/{{ .logged }}/badge.png"/><br><textarea style="width: 100%; max-width: 500px; box-sizing: border-box;"><a href="https://minty.anteater.monster/users/{{ .logged }}"><img src="https://minty.anteater.monster/users/{{ .logged }}/badge.png" alt="Minty Cafe Profile"/></a></textarea></p>
{{ else }}
<h2>Welcome!</h2>
<p>minty is a place to share your current status.</p>
<p><a href="/register">Register now!</a></p>
{{ end }}
<p><img src="https://file.garden/aJzQmzrHVB4BLKwu/button(1).png"/><br><textarea style="width: 100%; max-width: 500px; box-sizing: border-box;"><a href="https://minty.anteater.monster"><img src="https://file.garden/aJzQmzrHVB4BLKwu/button(1).png" alt="Status Cafe"/></a></textarea></p></p>
<p><a href="/feed.atom">Subscribe via Atom</a></p>
</section>
<section>
<h2>Status stream</h2>
{{ range .statuses }}
<article class="status">
{{ template "status" . }}
</article>
{{ end }}
</section>
</div>
{{ end }}