templates/articles-blocks/contributors.html.twig line 1

Open in your IDE?
  1. <div class="contributor-container">
  2.     {% if author is defined and author is not empty %}
  3.         {% set this_author = sulu_resolve_contact(author) %}
  4.         {% if this_author.visibleAnnuaire is defined and this_author.visibleAnnuaire is not empty %}
  5.             {% if this_author.visibleAnnuaire == true %}
  6.                 {% if this_author.fullName is defined and this_author.fullName is not empty %}
  7.                     <a href="/user/{{ author }}" class="cblue">
  8.                         {{ this_author.fullName }}
  9.                     </a>
  10.                 {% endif %}
  11.             {% else %}
  12.                 {% if this_author.fullName is defined and this_author.fullName is not empty %}
  13.                     <span class="cblue">{{ this_author.fullName }}</span>
  14.                 {% endif %}
  15.             {% endif %}
  16.         {% else %}
  17.             {% if this_author.fullName is defined and this_author.fullName is not empty %}
  18.                 <span class="cblue">{{ this_author.fullName }}</span>
  19.             {% endif %}
  20.         {% endif %}
  21.         {% if content.contributors is defined and content.contributors is not empty %},
  22.         {% endif %}
  23.     {% endif %}
  24.     {% if content.contributors is defined and content.contributors is not empty %}
  25.         {% for contributor in content.contributors %}
  26.             {% include "articles-blocks/logic/showContributor.html.twig" %}
  27.             {% if not loop.last %},
  28.             {% endif %}
  29.         {% endfor %}
  30.     {% endif %}
  31. </div>