templates/front/sitemapLinks.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block body %}
  3.     {% include "front/header.html.twig" with {
  4.         'icon':asset("assets/img/posico.svg"),
  5.         "img":asset("assets/img/posbg.png"),
  6.         "title":("sitemap.header.title"|trans),
  7.         "intro":("sitemap.header.intro"|trans),
  8.     } %}
  9.     <section class="container pay-70 container-custom">
  10.         <ul>
  11.             {% for key, link in getSitemapLinks() %}
  12.                 <li>
  13.                     <a href="{{ link }}">{{ link }}</a>
  14.                 </li>
  15.             {% endfor %}
  16.         </ul>
  17.     </section>
  18. {% endblock %}