takahe/templates/statuses/_status.html

13 lines
362 B
HTML
Raw Normal View History

2022-11-05 13:17:27 -07:00
<div class="status">
<h3 class="author">
<a href="{{ status.identity.urls.view }}">
{{ status.identity }}
<small>{{ status.identity.short_handle }}</small>
</a>
</h3>
2022-11-05 16:51:54 -07:00
<time>
<a href="{{ status.urls.view }}">{{ status.created | timesince }} ago</a>
</time>
2022-11-05 13:17:27 -07:00
{{ status.text | linebreaks }}
</div>