This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_includes/nav.html.twig
2017-11-09 22:44:30 +00:00

19 lines
651 B
Twig

<div class="border-bottom border-b border-grey-lighter mb-4">
<header class="container mx-auto flex items-center">
<div class="w-1/4">
<a href="/" class="" title="Home">
{{ site.title }}
</a>
</div>
<nav class="w-3/4 text-right">
{% for link in site.nav_links %}
<a href="{{ link.href }}"
class="inline-block py-4 ml-4 {{ page.url matches '#^' ~ (link.pattern ?: link.href) ~ '/?#' ? 'border-b-2 border-blue' }}">
{{- link.title -}}
</a>
{% endfor %}
</nav>
</header>
</div>