templates/press_site/partials/footer.html.twig line 1

Open in your IDE?
  1. <footer>
  2.     <div class="footer__container">
  3.         <div class="footer__moto-section">
  4.             <img class="footer__moto" src="{{ asset('assets/press_site/images/tagline_1.png') }}" alt="moto"/>
  5.         </div>
  6.         <div class="footer__rights-section">
  7.             <span class="copyrights">© {{ 'now' | date('Y') }} Egmont. All rights reserved.</span>
  8.             <div class="footer__social-links">
  9.                 <a href="#">
  10.                     <img src="{{ asset('assets/press_site/images/footer/linkedIn-icon.png') }}" alt="linked-in-link">
  11.                 </a>
  12.                 <a href="#">
  13.                     <img src="{{ asset('assets/press_site/images/footer/fb-icon.png') }}" alt="fb-link">
  14.                 </a>
  15.                 <a href="#">
  16.                     <img src="{{ asset('assets/press_site/images/footer/instagram-icon.png') }}" alt="instagram-link">
  17.                 </a>
  18.             </div>
  19.             <div class="footer__link-section">
  20.                 {% set footerPages = getContentPages('footer') %}
  21.                 {% if footerPages is not empty %}
  22.                 <ul>
  23.                     {% for page in footerPages %}
  24.                     <li class="link-internal">
  25.                         {% set params = {_locale: app.request.locale, id: page.id, slug: page.slug} %}
  26.                         <a href="{{ path('press_site.actions.content.generic', params) }}">{{ page.title }}</a>
  27.                     </li>
  28.                     {% endfor %}
  29.                 </ul>
  30.                 {% endif %}
  31.             </div>
  32.         </div>
  33.     </div>
  34. </footer>