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-10-07 09:00:03 +01:00

28 lines
960 B
Twig

<header class="w-100 pa3 ph4-ns bg-white">
<div class="db dt-ns mw9 center w-100">
<div class="db dtc-ns v-mid tl w-50">
<a href="/" class="dib f5 f4-ns mt0 mb1 link black-70" title="Home">
{{ site.title }}
</a>
</div>
{% set links = [
{ title: 'About', href: '/', pattern: '/\\.' },
{ title: 'Experience', href: '/experience' },
{ title: 'Testimonials', href: '/testimonials' },
{ title: 'Talks', href: '/talks' },
{ title: 'Blog', href: '/blog' },
{ title: 'Contact', href: '/contact' }
] %}
<nav class="db dtc-ns v-mid w-100 tl tr-ns mt2 mt0-ns">
{% for link in links %}
{% set pattern = '#^' ~ (link.pattern ?: link.href) ~ '/?#' %}
<a href="{{ link.href }}" class="nav-item {{ page.url matches pattern ? 'nav-item--active' }}">
{{- link.title -}}
</a>
{% endfor %}
</nav>
</div>
</header>