templates/pages/bio.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block content %}
  3.     <div class="container my-4 mb-lg-5 mt-lg-6">
  4.         <div class="row match-height-card-small g-3" data-match-height-group="card-small-group">
  5.             {% if (content.bioBlocks is defined) %}
  6.                 {% for bioBlock in content.bioBlocks %}
  7.                     <div class="col-12 col-md-6 col-lg-4 col-xl-3">
  8.                         {{ include('@components/card-small.html.twig', {
  9.                             text: bioBlock.text,
  10.                             image: bioBlock.image.formats['440x200'],
  11.                             link: bioBlock.link
  12.                         }) }}
  13.                     </div>
  14.                 {% endfor %}
  15.             {% endif %}
  16.         </div>
  17.     </div>
  18. {% endblock %}