mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 06:33:01 +00:00
26 lines
705 B
Cheetah
26 lines
705 B
Cheetah
{{template "header.tmpl"}}
|
|
<div class="page-title"> Thread </div>
|
|
{{template "navigation.tmpl"}}
|
|
|
|
{{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">{{.ReplyContent}}</textarea>
|
|
<br/>
|
|
<button type="submit"> Post </button>
|
|
</form>
|
|
{{end}}
|
|
|
|
{{range .Context.Descendants}}
|
|
{{template "status.tmpl" .}}
|
|
{{end}}
|
|
|
|
{{template "footer.tmpl"}}
|