aboutsummaryrefslogtreecommitdiff
path: root/templates/thread.tmpl
blob: afb307b3b9ea5eb2e695692f4e230898af184e7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{template "header.tmpl"}}
{{template "navigation.tmpl" .NavbarData}}
<div class="page-title"> Thread </div>

{{range .Statuses}}

{{template "status.tmpl" .}}
{{if $.PostContext.ReplyContext}}{{if eq .ID $.PostContext.ReplyContext.InReplyToID}}
{{template "postform.tmpl" $.PostContext}}
{{end}}{{end}}

{{end}}

{{template "footer.tmpl"}}