templates/Lenord/Main/plandusite.html.twig line 1

Open in your IDE?
  1. {% extends 'Lenord/base.html.twig' %}
  2. {% block header_epingles %}
  3.   {{ include('Lenord/Main/parts/epingles.html.twig') }}
  4. {% endblock %}
  5. {% block header_breadcrumb %}
  6.   {% include 'Nordinfo/Main/parts/breadcrumb.html.twig' with {'variation':'le-nord'} %}
  7. {% endblock %}
  8. {% block header_breadcrumb_pdf %}
  9.   {% include 'Nordinfo/Main/parts/breadcrumb.html.twig' with {'variation':'le-nord'} %}
  10. {% endblock %}
  11. {% block body %}
  12.   <main role="main" tabindex="-1" id="mainContent">
  13.     {% include 'Nordinfo/Main/parts/back_btn.html.twig' with {'back_btn_class':'--leNord --pageLegal'} %}
  14.     <article>
  15.       <div class="containerSm containerPostDetails --nordServices mBMd">
  16.         <h1 class="__headingMain mTMd--imp">Plan du site</h1>
  17.         <div class="containerContent --nordServices">
  18.           <ul class="sitemap not-diamond">
  19.             {% for item in urls %}
  20.               <li>
  21.                 <a href="{{ item.parent.url }}" class="no-external-icon">{{ item.parent.name }}</a>
  22.                 {% if item.children is defined %}
  23.                   <ul class="not-diamond">
  24.                     {% for child in item.children %}
  25.                       {% if (child.url is defined and child.url is not empty) and (child.name is defined and child.name is not empty) %}
  26.                         <li>
  27.                           <a href="{{ child.url }}">{{ child.name|striptags }}</a>
  28.                         </li>
  29.                       {% endif %}
  30.                       {% if child.children is defined %}
  31.                         <ul class="not-diamond">
  32.                           {% for schild in child.children %}
  33.                             <li>
  34.                               <a href="{{ schild.url }}">{{ schild.name|striptags }}</a>
  35.                             </li>
  36.                           {% endfor %}
  37.                         </ul>
  38.                       {% endif %}
  39.                     {% endfor %}
  40.                   </ul>
  41.                 {% endif %}
  42.               </li>
  43.             {% endfor %}
  44.           </ul>
  45.         </div>
  46.       </div>
  47.     </article>
  48.   </main>
  49. {% endblock %}
  50. {% block footer_top %}
  51.   {% include 'Nordinfo/Main/parts/our-websites.html.twig' %}
  52.   {% if is_preview != 1 %}
  53.     <div class="container pB pT">
  54.       {% include 'Nordinfo/Main/parts/article-actions.html.twig' with {'post_title':'test', 'post_id':'test', 'is_nord_services':true} %}
  55.     </div>
  56.   {% endif %}
  57. {% endblock %}