templates/website/teacher/teacher-profile.html.twig line 1

Open in your IDE?
  1. {% extends 'website/main.template.html.twig' %}
  2. {% from 'utils.html.twig' import ico, imgUpload %}
  3. {% block body %}
  4.     {% include 'website/includes/search-section.html.twig' %}
  5.     {% embed 'website/includes/page-title.html.twig' with { pageTitle: getLanguage('teacher', 'teachers') }%}
  6.         {% block migalhas %}
  7.             <a href="{{ path('home') }}">{{ getLanguage('home', 'teachers') }}</a>&ensp;/&ensp;<span>{{ getLanguage('teachers', 'teachers') }}</span>
  8.         {% endblock %}
  9.     {% endembed %}
  10.     <div class="institucional">
  11.         <div class="container">
  12.             <section class="box-sobre">
  13.                 <div class="info">
  14.                     <h2>{{ userTeacher.name }}</h2>
  15.                     <div class="desc">
  16.                         {% if userTeacher.biography %}
  17.                             {{ userTeacher.biography|raw }}
  18.                         {% else %}
  19.                             {{ getLanguage('teacher_biogaphy', 'teachers') }}
  20.                         {% endif %}
  21.                     </div>
  22.                     {# RESUME #}
  23.                     {% if userTeacher.resume %}
  24.                         <div class="resume" data-status="off">
  25.                             {{ userTeacher.resume|raw }}
  26.                         </div>
  27.                     {% endif %}
  28.                 </div>
  29.                 <div class="teacher-contact">
  30.                     <div class="avatar">
  31.                         {% if userTeacher.photo %}
  32.                             {{ imgUpload(
  33.                                 userTeacher.photo,
  34.                                 enum('AbstractEnum::PATH_PROFILES'),
  35.                                 'user-profile-teacher',
  36.                                 enum('AbstractEnum::YES'))
  37.                             }}
  38.                         {% endif %}
  39.                     </div>
  40.                     {% if userTeacher.linkedin or userTeacher.twitter or userTeacher.facebook or userTeacher.instagram or userTeacher.youtube or userTeacher.tiktok %}
  41.                         <nav class="social">
  42.                             {% if userTeacher.linkedin %}
  43.                                 <a href="{{ userTeacher.linkedin }}" title="LinkedIn" target="_blank">
  44.                                     <i class="fab fa-linkedin-in"></i>
  45.                                 </a>
  46.                             {% endif %}
  47.                             {% if userTeacher.website %}
  48.                                 <a href="{{ userTeacher.website }}" title="Website" target="_blank">
  49.                                     {{ ico('globe') }}
  50.                                 </a>
  51.                             {% endif %}
  52.                             {% if userTeacher.twitter %}
  53.                                 <a href="{{ userTeacher.twitter }}" title="Twitter" target="_blank">
  54.                                     <i class="fab fa-twitter"></i>
  55.                                 </a>
  56.                             {% endif %}
  57.                             {% if userTeacher.facebook %}
  58.                                 <a href="{{ userTeacher.facebook }}" title="Facebook" target="_blank">
  59.                                     <i class="fab fa-facebook-f"></i>
  60.                                 </a>
  61.                             {% endif %}
  62.                             {% if userTeacher.instagram %}
  63.                                 <a href="{{ userTeacher.instagram }}" title="Instagram" target="_blank">
  64.                                     <i class="fab fa-instagram"></i>
  65.                                 </a>
  66.                             {% endif %}
  67.                             {% if userTeacher.youtube %}
  68.                                 <a href="{{ userTeacher.youtube }}" title="YouTube" target="_blank">
  69.                                     <i class="fab fa-youtube"></i>
  70.                                 </a>
  71.                             {% endif %}
  72.                             {% if userTeacher.tiktok %}
  73.                                 <a href="{{ userTeacher.tiktok }}" title="Tiktok" target="_blank">
  74.                                     <i class="fab fa-tiktok"></i>
  75.                                 </a>
  76.                             {% endif %}
  77.                         </nav>
  78.                     {% endif %}
  79.                 </div>
  80.             </section>
  81.         </div>
  82.     </div>
  83. {% endblock %}