You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

navbar.html.twig 142B

123456789
  1. <div>
  2. <ul>
  3. {% for url in navbar %}
  4. <li>
  5. <a href="{{ url.url }}">{{ url.name }} </a>
  6. </li>
  7. {% endfor %}
  8. </ul>
  9. </div>