mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-04 20:19:22 +02:00
29 lines
808 B
Cheetah
29 lines
808 B
Cheetah
{{template "header.tmpl"}}
|
|
{{template "navigation.tmpl" .NavbarData}}
|
|
<div class="page-title"> Timeline </div>
|
|
|
|
<form class="timeline-post-form" action="/post" method="POST" enctype="multipart/form-data">
|
|
<label for="post-content"> New Post </label>
|
|
<div class="post-content-container">
|
|
<textarea id="post-content" name="content" class="post-content" cols="50" rows="5"></textarea>
|
|
</div>
|
|
<div class="post-attachment-div">
|
|
Attachments <input id="post-file-picker" type="file" name="attachments" multiple>
|
|
</div>
|
|
<button type="submit"> Post </button>
|
|
</form>
|
|
|
|
{{range .Statuses}}
|
|
{{template "status.tmpl" .}}
|
|
{{end}}
|
|
|
|
<div class="pagination">
|
|
{{if .HasPrev}}
|
|
<a href="{{.PrevLink}}">prev</a>
|
|
{{end}}
|
|
{{if .HasNext}}
|
|
<a href="{{.NextLink}}">next</a>
|
|
{{end}}
|
|
</div>
|
|
{{template "footer.tmpl"}}
|