elf-notes/templates/macros/header.html

11 lines
436 B
HTML

{% macro header(current_section) %}
<header class="navbar">
<div class="container">
<a class="identity" href="{{ config.base_url | safe }}">{{ config.title | default(value="") }}</a>
</div>
{# TODO: Add buttons, perhaps even a menu, to handle navigating to other sections. #}
{# TODO: Add search feature. DO NOT use Zola's #}
{# TODO: Add social networking buttons for Twitter, Github, & Gitea #}
</header>
{% endmacro %}