2025-04-22 23:15:46 -04:00
|
|
|
{% macro header(page) %}
|
2025-04-17 12:39:20 -04:00
|
|
|
<header>
|
2025-04-22 23:15:46 -04:00
|
|
|
<hgroup class="title">
|
|
|
|
<h1>This Weblog Belongs to<br>Z. Charles Dziura</h1>
|
2025-04-17 12:39:20 -04:00
|
|
|
</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>
|
2025-04-17 12:39:20 -04:00
|
|
|
</header>
|
2025-04-22 23:15:46 -04:00
|
|
|
{% endmacro %}
|