oliverdavies.uk/source/_includes/main-menu.html.twig
2024-12-29 23:55:04 +00:00

8 lines
354 B
Twig

<nav class="flex flex-wrap justify-center -mb-3">
{% for link in site.menu_links %}
<a class="mx-3 mb-3 text-base underline md:text-lg dark:text-white hover:no-underline link dark:hover:text-blue-400 hover:text-gray-900" href="{{ link.url }}" title="{{ link.attributes.title ?? link.title }}">
{{ link.title }}
</a>
{% endfor %}
</nav>