templates/front/sitemapLinks.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block body %}
  3.     <section class="container pab-100 pat-70">
  4.         <h2 class="text-center titleh1 mab-80">{{ "sitemap_links.title"|trans }}</h2>
  5.         <ul class="phnupp">
  6.             {% for key, link in getSitemapLinks() %}
  7.                 <li>
  8.                     <a href="{{ link }}" class="c-9DC771-h c-616161">{{ link }}</a>
  9.                 </li>
  10.             {% endfor %}
  11.         </ul>
  12.     </section>
  13. {% endblock %}