mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-27 06:06:38 +00:00
dd83ad053c
* rework robots.txt response * don't let robots snippet from statuses/threads * allow robots to index if user is Discoverable * add license text
19 lines
407 B
Cheetah
19 lines
407 B
Cheetah
{{ template "header.tmpl" .}}
|
|
<main>
|
|
<div data-nosnippet 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" .}} |