bloat/templates/quickreply.tmpl
r 1d61f1aa27 Update the default theme
This uses better color contrast and component spacing to improve
legibility. The updated HTML also has better compatibility with browsers
with limited/no CSS support.
2023-12-28 13:27:30 +00:00

13 lines
339 B
Cheetah

{{with $s := .Data}}
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
<h1>Quick Reply</h1>
{{if .Ancestor}}
{{template "status.tmpl" (WithContext .Ancestor $.Ctx)}}
{{end}}
{{template "status.tmpl" (WithContext .Status $.Ctx)}}
{{template "postform.tmpl" (WithContext $s.PostContext $.Ctx)}}
{{template "footer.tmpl"}}
{{end}}