You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
juice/templates/_macros.html

16 lines
497 B
HTML

{% macro render_header() %}
{% set section = get_section(path="_index.md") %}
<a href="{{ section.permalink }}">
<div class="logo">
<img src="{{ get_url(path="juice.svg") }}" alt="logo">
Juice
</div>
</a>
<nav>
{% for page in section.pages %}
<a class="nav-item subtitle-text" href="{{ page.permalink }}">{{ page.title }}</a>
{% endfor %}
<a class="nav-item subtitle-text" href="https://github.com/huhu/juice">Github</a>
</nav>
{% endmacro render_header %}