Deprecated: Symfony\Component\Translation\t(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/translation/Resources/functions.php on line 18

Deprecated: Symfony\Component\Dotenv\Dotenv::loadEnv(): Implicitly marking parameter $envKey as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/dotenv/Dotenv.php on line 110

Deprecated: Symfony\Component\Runtime\GenericRuntime::getResolver(): Implicitly marking parameter $reflector as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/runtime/GenericRuntime.php on line 89

Deprecated: Symfony\Component\Runtime\RuntimeInterface::getResolver(): Implicitly marking parameter $reflector as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/runtime/RuntimeInterface.php on line 26

Deprecated: Symfony\Component\Console\Input\ArgvInput::__construct(): Implicitly marking parameter $argv as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/console/Input/ArgvInput.php on line 46

Deprecated: Symfony\Component\Console\Input\ArgvInput::__construct(): Implicitly marking parameter $definition as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/console/Input/ArgvInput.php on line 46

Deprecated: Symfony\Component\Console\Input\Input::__construct(): Implicitly marking parameter $definition as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/console/Input/Input.php on line 36

Deprecated: Constant E_STRICT is deprecated in /var/www/html/t/taurushr/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /var/www/html/t/taurushr/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

templates/components/SingleTeamMember.html.twig line 1

Open in your IDE?
  1. <div
  2.   data-href="{{ generatePath(app.request, teamMember.linkedPageId, {'teammember_slug': teamMember.slug}) }}"
  3.   class="team-member"
  4.   role="link"
  5.   tabindex="0"
  6.   aria-label="{{ teamMember.title }}"
  7. >
  8.   <div class="team-member-image">
  9.     <!-- TODO: Add image cache -->
  10.     {# CW: Added but no idea what size your want #}
  11.     <img
  12.       src="{{ imageCache('/' ~ teamMember.getFullImagePath, 'cropResize', 700, 1100) }}"
  13.       alt="{{ teamMember.title }}"
  14.       loading="lazy"
  15.     >
  16.   </div>
  17.   <div class="team-member__info">
  18.     <h4 class="team-member__name">
  19.       {{ teamMember.title }}
  20.     </h4>
  21.     <div class="team-member__title">
  22.       {{ teamMember.position }}
  23.     </div>
  24.     {% if teamMember.postNominal %}
  25.       <div class="team-member__post-nominal">
  26.         {{ teamMember.postNominal }}
  27.       </div>
  28.     {% endif %}
  29.     {% if teamMember.linkedinUrl or teamMember.email %}
  30.       <div class="team-member__socials">
  31.         {% if teamMember.linkedinUrl %}
  32.           <a
  33.             href="{{ teamMember.linkedinUrl }}"
  34.             class="team-member__social-link"
  35.             title="{{ teamMember.title }} LinkedIn"
  36.           >
  37.             <i class="fa-brands fa-linkedin"></i>
  38.           </a>
  39.         {% endif %}
  40.         {% if teamMember.email %}
  41.           <a
  42.             href="mailto:{{ teamMember.email }}"
  43.             class="team-member__social-link"
  44.             title="email {{ teamMember.title }}"
  45.           >
  46.             <i class="fa-solid fa-paper-plane-top"></i>
  47.           </a>
  48.         {% endif %}
  49.       </div>
  50.     {% endif %}
  51.   </div>
  52. </div>