Mercurial > libervia-templates
view sat_templates/templates/bulma/components/avatar.html @ 245:10278ba367a2
bulma (photo/discover): design for the new theme + create button + delete button
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 19 Jun 2020 17:57:13 +0200 |
parents | 1215a6e2385f |
children | 878e7aee0e4a |
line wrap: on
line source
{% macro avatar(jid, class="is-48x48") %} {%- if identities is defined -%} {% set identity = identities[jid] %} {%- if identity.avatar_basename %} <div class="is-avatar image {{class}}"> <img src="/cache/common/{{identities[jid].avatar_basename}}"> </div> {% else %} {% set nick = identity.nicknames[0] if identity.nicknames else jid %} <span class="is-avatar image {{class}} is-flex has-items-centered has-text-weight-bold is-size-3 {{class}}">{{nick|first|upper}}</span> {%- endif -%} {%- endif -%} {% endmacro %}