This commit is contained in:
Lyn Fugmann 2024-09-20 18:39:35 +02:00
parent 8f86de2246
commit 5fab362054
4 changed files with 87 additions and 1 deletions

View file

@ -19,6 +19,11 @@ header {
align-items: center;
}
#header-logo img {
max-height: 60px;
display: block;
}
#mainNav ul {
margin: 0;
padding: 0;

View file

@ -1,6 +1,8 @@
<header>
<div class="header-container">
<a href="{{ "/" | locale_url }}" title="home">ESE Logo</a>
<a id="header-logo" href="{{ "/" | locale_url }}" title="home">
<img alt="ESE {{year}} Logo" src="/static/ESELogo24.svg">
</a>
<nav id="mainNav">
{{ collections.mainNav | pageLang | eleventyNavigation | eleventyNavigationToHtml | safe }}
</nav>