mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-04 20:19:22 +02:00
16 lines
402 B
Cheetah
16 lines
402 B
Cheetah
{{with $s := .Data}}
|
|
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
|
|
<div class="page-title"> Thread </div>
|
|
|
|
{{range .Statuses}}
|
|
|
|
{{template "status.tmpl" (WithContext . $.Ctx)}}
|
|
{{if $s.PostContext.ReplyContext}}{{if eq .ID $s.PostContext.ReplyContext.InReplyToID}}
|
|
{{template "postform.tmpl" (WithContext $s.PostContext $.Ctx)}}
|
|
{{end}}{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{template "footer.tmpl"}}
|
|
{{end}}
|