view default/components/avatar.html @ 118:c744170fd597

css: minor change in menu margin
author Goffi <goffi@goffi.org>
date Tue, 30 Jan 2018 07:47:29 +0100
parents 5992b774a6a4
children 0a0d9a953d98
line wrap: on
line source

{% macro avatar(jid) %}
    {%- if identities is defined -%}
        {%- if identities[jid].avatar_basename is defined %}
            <img class="avatar" src="{{cache_path}}{{identities[jid].avatar_basename}}">
        {% else %}
            <span class="avatar generated">{{author|first|upper}}</span>
        {%- endif -%}
    {%- endif -%}
{% endmacro %}