templates/front/includes/footer_menu.html.twig line 1

Open in your IDE?
  1. {% set activeTheme = app.session.get('theme', 'horse') %}
  2. <div class="single-footer-widget">
  3.     <div class="title">
  4.         <h3>{{ 'app.footer.usefull_links.title'|trans }}</h3>
  5.     </div>
  6.     <ul class="usefull-links">
  7.         <li>
  8.             <a href="{{ path('front_about') }}">{{ 'app.menu.about_us'|trans }}</a>
  9.         </li>
  10.         <li>
  11.             <a href="courses.html">Courses</a>
  12.         </li>
  13.         <li>
  14.             <a href="{{ path('front_gallery_index') }}">{{ 'app.menu.gallery'|trans }}</a>
  15.         </li>
  16.         <li>
  17.             <a href="{{ path('front_blog_index') }}">{{ 'app.menu.blog'|trans }}</a>
  18.         </li>
  19.         <li>
  20.             <a href="{{ path('front_contact') }}">{{ 'app.menu.contact_us'|trans }}</a>
  21.         </li>
  22.     </ul>
  23. </div>