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

30 lines
1.7 KiB
Twig
Raw Normal View History

2018-05-21 20:41:37 +00:00
<div class="navbar border-bottom border-b border-grey-light mb-6" role="banner">
2017-12-28 16:37:56 +00:00
<header class="container mx-auto px-4">
2018-05-21 20:41:37 +00:00
<div class="md:flex">
<div class="w-full md:w-1/3 lg:w-1/4 flex items-center">
2017-12-28 16:37:56 +00:00
<div class="w-3/4 py-5">
<a href="/" title="Home">
{{ site.title }}
</a>
</div>
2018-05-21 20:41:37 +00:00
<div class="w-1/4 text-right md:hidden">
2017-12-28 16:37:56 +00:00
<button type="button" class="nav-toggle appearance-none">
<svg class="fill-current text-grey-dark w-6 h-6" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M16.4 9H3.6c-.552 0-.6.447-.6 1 0 .553.048 1 .6 1h12.8c.552 0 .6-.447.6-1 0-.553-.048-1-.6-1zm0 4H3.6c-.552 0-.6.447-.6 1 0 .553.048 1 .6 1h12.8c.552 0 .6-.447.6-1 0-.553-.048-1-.6-1zM3.6 7h12.8c.552 0 .6-.447.6-1 0-.553-.048-1-.6-1H3.6c-.552 0-.6.447-.6 1 0 .553.048 1 .6 1z"/></svg>
2017-12-28 16:37:56 +00:00
</button>
</div>
2017-12-28 12:42:38 +00:00
</div>
2018-05-21 20:41:37 +00:00
<nav class="hidden w-full md:w-2/3 lg:w-3/4 md:flex md:flex-wrap md:justify-end" role="navigation">
2018-05-15 01:18:37 +00:00
{% for link in site.navigation %}
2018-05-21 20:41:37 +00:00
<a href="{{ link.href }}" class="-mx-4 p-4 md:border-b-2 md:border-transparent md:ml-4 md:mr-0 md:p-0 {{ loop.first ? 'border-t border-grey-lighter md:border-t-0 md:border-transparent' }} {{ page.url matches '#' ~ link.pattern ~ '#' ? 'md:bg-transparent md:border-blue' }}">
<span class="flex items-center h-full">
{{- link.title -}}
</span>
2018-02-26 01:32:45 +00:00
</a>
{% endfor %}
2017-12-28 12:42:38 +00:00
</nav>
</div>
2017-11-09 22:44:30 +00:00
</header>
</div>