theme/templates/partials/elements/authors.twig line 1

Open in your IDE?
  1.                     <div class="authors">
  2.                         {% if page.pageAuthors|length > 0 %}
  3.                             {% for author in page.pageAuthors %}
  4.                                 <div class="author">
  5.                                     {% if author.userImage|default %}
  6.                                     <img alt="{{ author.name }}" alt="{{ author.name|default(null)|e }}" src="{{ author.userImage|imagine_filter('user')|urldecode }}" class="author__photo" loading="lazy" />
  7.                                     {% else %}
  8.                                     <div class="author__photo author__photo--placeholder"></div>
  9.                                     {% endif %}
  10.                                     <div>
  11.                                         <span class="author__name">{{ author.name|default(null) }}</span>
  12.                                         <span class="author__function">{{ author.authorFunction|default(null) }}</span>
  13.                                     </div>
  14.                                 </div>
  15.                             {% endfor %}
  16.                         {% endif %}
  17.                     </div>