templates/Front/Scholar/Card/teacher.html.twig line 1

Open in your IDE?
  1. <div class="card-channel">
  2.     <div class="card-channel-logo-title teacher-logo">
  3.         <div class="content-image-channel">
  4.             {{ teacher|user_avatar }}
  5.         </div>
  6.         <div class="info-channel">
  7.             <p class="font-weight-bold">{{ teacher.firstName }} {{ teacher.lastName }}</p>
  8.             {% block content_header_teacher %}
  9.                 {% if teacher.roleDescription is not null %}
  10.                     <p>
  11.                         {{ teacher.roleDescription }}
  12.                     </p>
  13.                 {% endif %}
  14.             {% endblock %}
  15.         </div>
  16.     </div>
  17.     <div class="mt-3">
  18.         {% if teacher.description is not null %}
  19.             <p class="channel-description-p text-ellipsis--3">
  20.                 {{ teacher.description }}
  21.             </p>
  22.         {% endif %}
  23.     </div>
  24. </div>