diff options
Diffstat (limited to 'web/template/thread.tmpl')
-rw-r--r-- | web/template/thread.tmpl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/web/template/thread.tmpl b/web/template/thread.tmpl index 5e4e3f7d4..f2b61019d 100644 --- a/web/template/thread.tmpl +++ b/web/template/thread.tmpl @@ -19,20 +19,20 @@ {{ template "header.tmpl" .}} <main> - <div data-nosnippet class="thread"> + <section data-nosnippet class="thread"> {{range .context.Ancestors}} - <div class="toot" id="{{.ID}}"> + <article class="toot" id="{{.ID}}"> {{ template "status.tmpl" .}} - </div> + </article> {{end}} - <div class="toot expanded" id="{{.status.ID}}"> + <article class="toot expanded" id="{{.status.ID}}"> {{ template "status.tmpl" .status}} - </div> + </article> {{range .context.Descendants}} - <div class="toot" id="{{.ID}}"> + <article class="toot" id="{{.ID}}"> {{ template "status.tmpl" .}} - </div> + </article> {{end}} - </div> + </section> </main> {{ template "footer.tmpl" .}}
\ No newline at end of file |