2019-12-13 20:08:26 +02:00
|
|
|
{{template "header.tmpl"}}
|
2019-12-13 22:04:28 +02:00
|
|
|
<div class="page-title"> Thread </div>
|
|
|
|
{{template "navigation.tmpl"}}
|
2019-12-13 20:08:26 +02:00
|
|
|
|
|
|
|
{{range .Context.Ancestors}}
|
|
|
|
{{template "status.tmpl" .}}
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{template "status.tmpl" .Status}}
|
|
|
|
{{if .PostReply}}
|
|
|
|
<form class="timeline-post-form" action="/post" method="POST">
|
|
|
|
<input type="hidden" name="reply_to_id" value="{{.ReplyToID}}" />
|
|
|
|
<label for="post-content"> Reply to {{.Status.Account.DisplayName}} </label>
|
|
|
|
<br/>
|
|
|
|
<textarea id="post-content" name="content" class="post-content" cols="50" rows="5"></textarea>
|
|
|
|
<br/>
|
|
|
|
<button type="submit"> Post </button>
|
|
|
|
</form>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{range .Context.Descendants}}
|
|
|
|
{{template "status.tmpl" .}}
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{template "footer.tmpl"}}
|