This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/activities/_identity.html

18 lines
492 B
HTML
Raw Normal View History

2022-11-18 02:52:00 +01:00
{% load activity_tags %}
<div class="post user">
<a href="{{ identity.urls.view }}">
2022-12-18 01:01:07 +01:00
<img src="{{ identity.local_icon_url.relative }}" class="icon" alt="Avatar for {{ identity.name_or_handle }}" loading="lazy">
</a>
2022-11-18 02:52:00 +01:00
{% if created %}
<time>
{{ event.created | timedeltashort }}
</time>
{% endif %}
<a href="{{ identity.urls.view }}" class="handle">
2022-12-15 08:50:54 +01:00
{{ identity.html_name_or_handle }} <small>@{{ identity.handle }}</small>
2022-11-18 02:52:00 +01:00
</a>
</div>