bloat/templates/thread.tmpl

15 lines
353 B
Cheetah
Raw Normal View History

{{template "header.tmpl" .HeaderData}}
2019-12-15 17:37:58 +00:00
{{template "navigation.tmpl" .NavbarData}}
<div class="page-title"> Thread </div>
2019-12-13 18:08:26 +00:00
2019-12-18 22:14:02 +00:00
{{range .Statuses}}
2019-12-13 18:08:26 +00:00
{{template "status.tmpl" .}}
{{if $.PostContext.ReplyContext}}{{if eq .ID $.PostContext.ReplyContext.InReplyToID}}
{{template "postform.tmpl" $.PostContext}}
{{end}}{{end}}
2019-12-13 18:08:26 +00:00
{{end}}
{{template "footer.tmpl"}}