ese-website/_includes/header.njk

22 lines
604 B
Plaintext
Raw Normal View History

2024-09-13 17:18:41 +02:00
<header>
2024-09-23 14:37:40 +02:00
<div class="header-container content">
2024-09-20 18:39:35 +02:00
<a id="header-logo" href="{{ "/" | locale_url }}" title="home">
<img alt="ESE {{year}} Logo" src="/static/ESELogo24.svg">
</a>
2024-09-15 14:58:59 +02:00
<nav id="mainNav">
2024-09-24 15:39:40 +02:00
{% set navPages = collections.mainNav | pageLang | eleventyNavigation %}
<ul>
{%- for entry in navPages -%}
<li{% if entry.url == page.url %} class="nav-active"{% endif %}>
<a href="{{ entry.url }}">{{ entry.title }}</a>
</li>
{%- endfor %}
</ul>
2024-09-15 14:58:59 +02:00
</nav>
</div>
2024-09-13 17:18:41 +02:00
</header>
2024-09-15 14:58:59 +02:00
{% css %}
2024-09-20 17:10:24 +02:00
{% include "header.css" %}
2024-09-15 14:58:59 +02:00
{% endcss %}