aboutsummaryrefslogtreecommitdiff
path: root/templates/timeline.tmpl
blob: b9ee3a5f8631df668a3c2e4e2fca30a1459db47b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{template "header.tmpl"}}
<h1> TIMELINE </h1>

<form class="timeline-post-form" action="/post" method="POST">
	<label for="post-content"> New Post </label>
	<br/>
	<textarea id="post-content" name="content" class="post-content" cols="50" rows="5"></textarea>
	<br/>
	<button type="submit"> Post </button>
</form>

{{range .Statuses}}
{{template "status.tmpl" .}}
{{end}}

{{if .HasNext}}
	<a href="{{.NextLink}}"> next </a>
{{end}}
{{if .HasPrev}}
	<a href="{{.PrevLink}}"> next </a>
{{end}}
{{template "footer.tmpl"}}