Rename header.html to header.liquid

This commit is contained in:
TheThomaas 2024-02-10 21:04:54 +01:00
parent 507bb7448a
commit 33f0aecdf6
3 changed files with 8 additions and 18 deletions

View file

@ -4,7 +4,7 @@
{% include "partials/metas.html" %}
</head>
<body>
{% include "partials/header.html" %}
{% include "partials/header.liquid" %}
<main tabindex="-1" id="main-content">
{% block content %}

View file

@ -1,17 +0,0 @@
{% include "partials/skip-link.html" %}
<header id="site-header">
<span></span>
<div>
<nav>
<ul>
{% for item in collections.subpages %}
{% if item.data.excludeFromNav != true %}
<li>
<a href="#{{ item.data.title | slug }}">{{ item.data.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</nav>
</div>
</header>

View file

@ -0,0 +1,7 @@
{% include "partials/skip-link.html" %}
<header id="site-header">
<span></span>
<div>
{% include "partials/navigation" %}
</div>
</header>