templates/users/contributorAlaune.html.twig line 1

Open in your IDE?
  1. {% if hitAuthor is defined and hitAuthor is not empty %}
  2.     {% if visibleAnnuaire is defined and visibleAnnuaire is not empty %}
  3.         {% if visibleAnnuaire == true %}
  4.             <a href="/user/{{ hit.user_id }}" class="nodeco diblock">
  5.         {% else %}
  6.             <div class="nodeco diblock">
  7.         {% endif %}
  8.                 <span class="diflex initials author cwhite jcc aic fs12" title="{{ author_name ~ " " ~ author_lastname }}">
  9.                     {{ author_name|first|upper }}
  10.                     {{ author_lastname|first|upper }}
  11.                 </span>
  12.         {% if visibleAnnuaire == true %}
  13.             </a>
  14.         {% else %}
  15.             </div>
  16.         {% endif %}
  17.     {% endif %}
  18. {% endif %}
  19. {% if contributors is defined and contributors is not empty and contributors|length > 0 %}
  20.     {% for contributor in contributors %}
  21.         {% include "users/logic/isUserInAnnuaire.html.twig" %}
  22.     {% endfor %}
  23. {% endif %}