oliverdavies.uk/source/_includes/main-menu.html.twig

8 lines
304 B
Twig
Raw Normal View History

2024-01-03 20:00:00 +00:00
<nav class="flex flex-wrap justify-center -mb-3">
2024-01-03 20:00:00 +00:00
{% for link in site.menu_links %}
2024-02-28 00:40:07 +00:00
<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 }}">
2024-01-03 20:00:00 +00:00
{{ link.title }}
</a>
2024-01-03 20:00:00 +00:00
{% endfor %}
</nav>