aboutsummaryrefslogtreecommitdiff
path: root/templates/thread.tmpl
blob: 9d8f6503aacf02fcf8f06a0899f64f17dd2aa6f8 (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 $.ReplyContext}}{{if eq .ID $.ReplyContext.InReplyToID}}
{{template "postform.tmpl" $.ReplyContext}}
{{end}}{{end}}

{{end}}

{{template "footer.tmpl"}}