NDOJ/templates/user/link.html
2024-04-14 00:23:14 -05:00

10 lines
300 B
HTML

<span class="{{ profile.css_class }} {{'user-with-img' if show_image}}">
{% if show_image %}
<span class="user-img">
<img loading="lazy" src="{{gravatar(profile)}}">
</span>
{% endif %}
<a href="{{ url('user_page', profile.username) }}">
{{ profile.username }}
</a>
</span>