mirror of
https://codeberg.org/superseriousbusiness/gotosocial.git
synced 2025-02-16 15:09:48 +03:00
* 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
No EOL
407 B
Cheetah
19 lines
No EOL
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" .}} |