<div class="card-channel">
<div class="card-channel-logo-title teacher-logo">
<div class="content-image-channel">
{{ teacher|user_avatar }}
</div>
<div class="info-channel">
<p class="font-weight-bold">{{ teacher.firstName }} {{ teacher.lastName }}</p>
{% block content_header_teacher %}
{% if teacher.roleDescription is not null %}
<p>
{{ teacher.roleDescription }}
</p>
{% endif %}
{% endblock %}
</div>
</div>
<div class="mt-3">
{% if teacher.description is not null %}
<p class="channel-description-p text-ellipsis--3">
{{ teacher.description }}
</p>
{% endif %}
</div>
</div>