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

28 lines
960 B
Twig
Raw Normal View History

2017-09-07 18:51:49 +00:00
<header class="w-100 pa3 ph4-ns bg-white">
2017-09-04 16:55:53 +00:00
<div class="db dt-ns mw9 center w-100">
<div class="db dtc-ns v-mid tl w-50">
2017-09-10 21:40:01 +00:00
<a href="/" class="dib f5 f4-ns mt0 mb1 link black-70" title="Home">
2017-09-04 16:55:53 +00:00
{{ site.title }}
2017-08-06 18:01:22 +00:00
</a>
</div>
2017-07-11 00:08:32 +00:00
2017-09-10 21:40:01 +00:00
{% set links = [
{ title: 'About', href: '/' },
{ title: 'Experience', href: '/experience' },
{ title: 'Testimonials', href: '/testimonials' },
{ title: 'Talks', href: '/talks' },
{ title: 'Blog', href: '/blog' },
{ title: 'Contact', href: '/contact' }
] %}
2017-08-06 18:01:22 +00:00
2017-09-10 21:40:01 +00:00
<nav class="db dtc-ns v-mid w-100 tl tr-ns mt2 mt0-ns">
{% for link in links %}
{% set pattern = '#^' ~ link.href ~ '(.|/)?#' %}
<a href="{{ link.href }}" class="f6 hover-blue link ml2 ml-m ml4-l dib {{ page.url matches pattern ? 'black' : 'black-70' }}">
{{- link.title -}}
</a>
{% endfor %}
2017-09-04 16:55:53 +00:00
</nav>
2017-07-25 23:13:04 +00:00
</div>
2017-09-04 16:55:53 +00:00
</header>