templates/block/footmenu.html.twig line 1

Open in your IDE?
  1. <ul>
  2.     {% for menu in menus %}
  3.         <li>
  4.             <form action="{{ path('redirect') }}" method="post">
  5.                 <button type="submit" name="redirect" class="foot-props" value="{{ '/' ~ app.request.locale ~ '/' ~ menu.intname }}">{{ menu.name}}</button>
  6.             </form>
  7.         </li>
  8.     {% endfor %}
  9. </ul>