templates/themes/theme/meettheteam/embedTeamMember.html.twig line 1

Open in your IDE?
  1. <twig:PageHero :title="teamMember.title" :subtitle="teamMember.position">
  2. <twig:block name="teamMemberInfo">
  3. <div class="flex items-center gap-8 mt-1">
  4. <h2 class="text-shade-50">{{ teamMember.position }}</h2>
  5. <div class="flex items-center gap-4">
  6. {% if teamMember.email %}
  7. <a href="mailto:{{ teamMember.email }}">
  8. <i class="fa-solid fa-paper-plane-top"></i>
  9. </a>
  10. {% endif %}
  11. {% if teamMember.linkedinUrl %}
  12. <a href="{{ teamMember.linkedinUrl }}" target="_blank">
  13. <i class="fa-brands fa-linkedin"></i>
  14. </a>
  15. {% endif %}
  16. </div>
  17. </div>
  18. </twig:block>
  19. <!-- TODO: make link dynamic -->
  20. <a class="button" href="/contact">How can we help you today?</a>
  21. </twig:PageHero>
  22. <twig:PageMainContent image="{{ teamMember.image ? '/userfiles/images/teammember/' ~ teamMember.image : null }}">
  23. {{ teamMember.content | raw }}
  24. <twig:block name="buttons">
  25. {% if teamMember.ctaText and teamMember.ctaLink %}
  26. <a class="button" href="{{ teamMember.ctaLink }}">
  27. {{- teamMember.ctaText -}}
  28. </a>
  29. {% endif %}
  30. </twig:block>
  31. </twig:PageMainContent>
  32. {% if teamMember.testimonial %}
  33. <twig:SingleTestimonial :testimonial="teamMember.testimonial" />
  34. {% endif %}