summaryrefslogtreecommitdiff
path: root/web/template/thread.tmpl
blob: d0f003b91ac99077207436bf6701c16365075f1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ template "header.tmpl" .}}
<main>
	<div class="thread">
		{{range .context.Ancestors}}
		<div class="toot">
			{{ template "status.tmpl" .}}
		</div>
		{{end}}
		<div class="toot expanded">
			{{ template "status.tmpl" .status}}
		</div>
		{{range .context.Descendants}}
		<div class="toot">
			{{ template "status.tmpl" .}}
		</div>
		{{end}}
	</div>
</main>
{{ template "footer.tmpl" .}}