takahe/templates/identity/_identity_banner.html

34 lines
941 B
HTML
Raw Normal View History

<div class="identity-banner">
2023-01-09 08:58:17 -08:00
{% if link_avatar is False %}
<div class="avatar-link">
{% else %}
<a href="{{ identity.urls.view }}" tabindex="-1" class="avatar-link">
{% endif %}
<img
2023-01-09 08:58:17 -08:00
src="{{ identity.local_icon_url.relative }}"
class="icon"
alt="Avatar for {{ identity.name_or_handle }}"
loading="lazy"
data-handle="{{ identity.name_or_handle }}"
_="on error set my.src to generate_avatar(@data-handle)"
>
2023-01-09 08:58:17 -08:00
{% if link_avatar is False%}
</div>
{% else %}
</a>
{% endif %}
2023-01-09 08:58:17 -08:00
{% if link_handle is False%}
<div class="handle">
{% else %}
<a href="{{ identity.urls.view }}" class="handle">
{% endif %}
<div class="link">{{ identity.html_name_or_handle }}</div>
<small>@{{ identity.handle }}</small>
{% if link_handle is False %}
</div>
{% else %}
</a>
{% endif %}
</div>