34 lines
1 KiB
HTML
34 lines
1 KiB
HTML
{{ 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
|
|
</p>
|
|
<p><a href="/feed.atom">Subscribe via Atom</a></p>
|
|
{{ else }}
|
|
<h2>Welcome!</h2>
|
|
<p>status.cafe is a place to share your current status.</p>
|
|
<p><a href="/register">Register now!</a></p>
|
|
{{ end }}
|
|
<p><img src="/assets/button.png"/></p>
|
|
</section>
|
|
<section>
|
|
<h2>Status stream</h2>
|
|
{{ range .statuses }}
|
|
<article class="status">
|
|
{{ template "status" . }}
|
|
</article>
|
|
{{ end }}
|
|
</section>
|
|
</div>
|
|
{{ end }}
|