Wrap the nav bar into a header element

main
trivernis 1 year ago
parent 1ac084a956
commit a968844b7b
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG Key ID: DFFFCC2C7A02DB45

@ -17,14 +17,16 @@
</head>
<body>
<ul class="navbar">
<li {% if current_path == "/" %} class="selected" {% endif %}>
<a href="{{ get_url(path="/")}}">Home</a>
</li>
<li {% if current_path == "/plants/" %} class="selected" {% endif %}>
<a href="{{ get_url(path="@/plants/_index.md")}}">Plants</a>
</li>
</ul>
<header>
<ul class="navbar">
<li {% if current_path == "/" %} class="selected" {% endif %}>
<a href="{{ get_url(path="/")}}">Home</a>
</li>
<li {% if current_path == "/plants/" %} class="selected" {% endif %}>
<a href="{{ get_url(path="@/plants/_index.md")}}">Plants</a>
</li>
</ul>
</header>
<section class="main">
<div class="container">
{% block content %} {% endblock %}

Loading…
Cancel
Save