mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 15:39:38 +00:00
16 lines
363 B
HTML
16 lines
363 B
HTML
|
{% load activity_tags %}
|
||
|
<div class="post user">
|
||
|
|
||
|
<img src="{{ identity.local_icon_url }}" class="icon">
|
||
|
|
||
|
{% if created %}
|
||
|
<time>
|
||
|
{{ event.created | timedeltashort }}
|
||
|
</time>
|
||
|
{% endif %}
|
||
|
|
||
|
<a href="{{ identity.urls.view }}" class="handle">
|
||
|
{{ identity.name_or_handle }} <small>@{{ identity.handle }}</small>
|
||
|
</a>
|
||
|
</div>
|