templates/users/showInitials.html.twig line 1

Open in your IDE?
  1. {% if (initials[0] is defined and initials[0] is not empty) or (initials[1] is defined and initials[1] is not empty) %}
  2.     <div class="nodeco diblock">
  3.         <span class="diflex initials author cwhite jcc aic fs12" title="{{ author }}">
  4.             {% if initials[0] is defined and initials[0] is not empty %}
  5.                 {{ initials[0]|first|upper }}
  6.             {% endif %}
  7.             {% if initials[1] is defined and initials[1] is not empty %}
  8.                 {{ initials[1]|first|upper }}
  9.             {% endif %}
  10.         </span>
  11.     </div>
  12. {% endif %}