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

19 lines
656 B
Twig
Raw Normal View History

2017-11-09 22:44:30 +00:00
<div class="border-bottom border-b border-grey-lighter mb-4">
2017-11-16 08:44:08 +00:00
<header class="container mx-auto px-4 flex items-center">
2017-11-09 22:44:30 +00:00
<div class="w-1/4">
<a href="/" class="" title="Home">
2017-10-28 15:40:40 +00:00
{{ site.title }}
2017-09-10 21:40:01 +00:00
</a>
2017-10-28 15:40:40 +00:00
</div>
2017-11-09 22:44:30 +00:00
<nav class="w-3/4 text-right">
2017-10-28 15:40:40 +00:00
{% for link in site.nav_links %}
2017-11-09 22:44:30 +00:00
<a href="{{ link.href }}"
class="inline-block py-4 ml-4 {{ page.url matches '#^' ~ (link.pattern ?: link.href) ~ '/?#' ? 'border-b-2 border-blue' }}">
2017-10-28 15:40:40 +00:00
{{- link.title -}}
</a>
{% endfor %}
</nav>
2017-11-09 22:44:30 +00:00
</header>
</div>