@if (post) {
{{ post.created_at | date:'fullDate' }}

Post

{{ text(post.content) }}

Edit

Edits create a new status ID.
}
@if (comments) {

Comments

Thread descendants
@if (comments.descendants?.length===0) {
No comments.
} @for (c of comments.descendants; track c; let i = $index) {
@if (i>0) {
}
@{{ c.account?.acct }} {{ c.created_at | date:'short' }}
{{ text(c.content) }}
}
}