templates/app/Section/templates/representations.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% set twig_img_path = absolute_url('/media/image/') %}
  3. {% block page_container %}
  4. <section class="bg-title-grey">
  5.     <div class="page-wrapper section-content">
  6.         <h1 class="ct-blue ff-os-bold m-0 text-uppercase parent-p">{{ section.title|raw }}</h1>
  7.     </div>
  8. </section>
  9. <div class="page-wrapper">
  10.     <div class="row">
  11.         {% if getRepresentationSections()|default(null) %}
  12.             {% for key, section in getRepresentationSections() %}
  13.                 {% set imageSource = twig_img_path ~ section.sectionImage.path %}
  14.                 {% include 'app/Section/templates/Representation/_representation.html.twig' with {
  15.                     'imageSource': imageSource,
  16.                     'link': section.slug
  17.                 } %}
  18.             {% endfor %}
  19.         {% endif %}
  20.     </div>
  21. </div>
  22. {% endblock %}