thread.tmpl 402 B

123456789101112131415
  1. {{with $s := .Data}}
  2. {{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
  3. <div class="page-title"> Thread </div>
  4. {{range .Statuses}}
  5. {{template "status.tmpl" (WithContext . $.Ctx)}}
  6. {{if $s.PostContext.ReplyContext}}{{if eq .ID $s.PostContext.ReplyContext.InReplyToID}}
  7. {{template "postform.tmpl" (WithContext $s.PostContext $.Ctx)}}
  8. {{end}}{{end}}
  9. {{end}}
  10. {{template "footer.tmpl"}}
  11. {{end}}