30 lines
940 B
HTML
30 lines
940 B
HTML
{{ define "content" }}
|
|
<div class="cols">
|
|
<section>
|
|
{{ if .logged }}
|
|
<h2>Set your status</h2>
|
|
{{ if .form.Error }}
|
|
<p>{{ .form.Error }}</p>
|
|
{{ end }}
|
|
{{ template "flash" .flash }}
|
|
<form action="/add" method="post">{{ template "status_form" .status }}</form>
|
|
<ul class="tools">
|
|
<li><a href="/about/status-updater">status updater</a> bookmarklet</li>
|
|
<li><a href="/current-status">status widget</a> for your homepage</li>
|
|
</ul>
|
|
{{ 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 }}
|
|
</section>
|
|
<section>
|
|
<h2>Status stream</h2>
|
|
{{ range .statuses }}
|
|
<article class="status">
|
|
{{ template "status" . }}
|
|
</article>
|
|
{{ end }}
|
|
</section>
|
|
</div>
|
|
{{ end }}
|