mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
19 lines
392 B
Cheetah
19 lines
392 B
Cheetah
|
{{ 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" .}}
|