buildsomething/templates/_macros.html

29 lines
850 B
HTML
Raw Normal View History

2024-11-05 21:59:02 +01:00
{% macro render_header() %}
{% set section = get_section(path="_index.md") %}
<a href="{{ section.permalink | safe }}">
<div class="logo">
<img src="{{ get_url(path=config.extra.juice_logo_path) }}" alt="logo">
{{ config.extra.juice_logo_name }}
</div>
</a>
<nav>
{% if config.extra.juice_extra_menu %}
{% for menu in config.extra.juice_extra_menu %}
<a class="nav-item subtitle-text" href="{{ menu.link | safe }}">{{ menu.title }}</a>
{% endfor %}
{% endif %}
2024-11-05 21:59:02 +01:00
{% for page in section.pages %}
<a class="nav-item subtitle-text" href="{{ page.permalink | safe }}">{{ page.title }}</a>
{% endfor %}
2024-11-06 12:15:43 +01:00
{% for path in section.subsections %}
{% set child = get_section(path=path) %}
<a class="nav-item subtitle-text" href="{{ child.permalink }}">{{ child.title }}</a>
{% endfor %}
2024-11-05 21:59:02 +01:00
</nav>
2024-11-06 12:15:43 +01:00
2024-11-05 21:59:02 +01:00
{% endmacro render_header %}