templates/includes/footer.html.twig line 1

Open in your IDE?
  1. {% if editmode %}
  2.     {% do pimcore_head_link().appendStylesheet(asset('static/css/editmode.css')) %}
  3.     {{ pimcore_head_link() }}
  4. {% endif %}
  5. {#footer#}
  6. <section class="seccion_body">
  7. <!-- Footer -->
  8. <footer
  9.     class=" bg-light text-muted">
  10.     <!-- Section: Links  -->
  11.     <div class="row">
  12.         <div class="col-sm-10 bg-dark text-white">
  13.             <section>
  14.                 <div
  15.                     class="container  mt-5">
  16.                     <!-- Grid row -->
  17.                     <div class="row mt-3">
  18.                         {% if editmode %}
  19.                             <h3 class="float-left">{{ 'Footer Column(s):' }}</h3>
  20.                         {% endif %}
  21.                         {% for i in pimcore_iterate_block(pimcore_block('mainlinkblock')) %}
  22.                             <div class="col-6 col-md">
  23.                                 <h5>{{ pimcore_input('mainBlockTitle', {'placeholder': 'Footer Title'}) }}</h5>
  24.                                 <ul class="list-unstyled text-small">
  25.                                     {% for i in pimcore_iterate_block(pimcore_block('linkblock')) %}
  26.                                         <li>{{ pimcore_link('myLink', {'class': "text-muted"}) }}</li>
  27.                                     {% endfor %}
  28.                                 </ul>
  29.                             </div>
  30.                             {% if editmode %}
  31.                                 <hr/>
  32.                             {% endif %}
  33.                         {% endfor %}
  34.                     </div>
  35.                 </div>
  36.             </section>
  37.         </div>
  38.         <div class="col-sm-2 d-flex justify-content-center " style="align-items: center;">
  39.                     {{ pimcore_image('logo-footer', {
  40.                         title: 'Imagene de footer',
  41.                         thumbnail: 'imegenesPortal',
  42.                         hidetext: true,
  43.                         deferred: true,
  44.                         cacheBuster: true,
  45.                         imgAttributes: {
  46.                             class : 'img_footer'
  47.                         }
  48.                     }) }}
  49.             {# <img id="logo-footer"  style = "width: 11.5rem; height: fit-content;" src="{{ asset('/static/images/1686101419239.png') }}"> #}
  50.         </div>
  51.     </div>
  52. </footer>
  53. </section>