view default/components/avatar.html @ 124:11e729a7d8e9

photo: photos handling, first draft: this template is a specialized file view for photo albums. A comments panel is added if a comments link is found.
author Goffi <goffi@goffi.org>
date Sun, 18 Mar 2018 11:31:36 +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 %}