blog/src/_includes/header.njk

13 lines
427 B
Text
Raw Normal View History

2025-04-22 23:15:46 -04:00
{% macro header(page) %}
<header>
2025-04-22 23:15:46 -04:00
<hgroup class="title">
<h1>This Weblog Belongs to<br>Z. Charles Dziura</h1>
</hgroup>
2025-04-22 23:15:46 -04:00
<nav>
<a href="/" {% if page == 'home' -%}class="current"{%- endif -%}>Home</a>
2025-04-23 00:35:13 -04:00
{# <a href="#" {% if page == 'essays' -%}class="current"{%- endif -%}>Essays</a> #}
2025-04-23 00:39:53 -04:00
<a href="/thoughts" {% if page == 'thoughts' -%}class="current"{%- endif -%}>Thoughts</a>
2025-04-22 23:15:46 -04:00
</nav>
</header>
2025-04-22 23:15:46 -04:00
{% endmacro %}