templates/templates/pages/people.html.twig line 1

Open in your IDE?
  1. {% extends "layouts/master.html.twig" %}
  2. {% block bodyClass %}{% endblock %}
  3. {% block siteHeader %}
  4.     {% include 'organisms/site-header.html.twig' %}
  5. {% endblock %}
  6. {% block pageHeader %}
  7.     {% include 'molecules/page-header.html.twig' with {
  8.         title: 'Persoas'
  9.     } %}
  10. {% endblock %}
  11. {% block pageContent %}
  12.     <div class="row">
  13.         {% for i in 0..11 %}
  14.             <div class="col-6 col-md-3">
  15.                 {% if random(0, 1) %}
  16.                     {% include 'molecules/members/with-modal.html.twig' with {
  17.                         hasImage: true,
  18.                         src: 'https://picsum.photos/700/700'
  19.                     } %}
  20.                 {% else %}
  21.                     {% include 'molecules/members/with-modal.html.twig' with {
  22.                         hasImage: true
  23.                     } %}
  24.                 {% endif %}
  25.             </div>
  26.         {% endfor %}
  27.     </div>
  28. {% endblock %}
  29. {% block siteFooter %}
  30.     {% include 'organisms/site-footer.html.twig' %}
  31. {% endblock %}