aboutsummaryrefslogtreecommitdiff
path: root/templates/thread.tmpl
blob: 7ec0e94a6e5b7e949854c04b55c9ff6146608654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{template "header.tmpl" .HeaderData}}
{{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"}}