mirror of
https://github.com/DanilaFe/abacus
synced 2024-11-04 18:08:31 -08:00
11 lines
285 B
HTML
11 lines
285 B
HTML
<nav>
|
|
<div class="center">
|
|
<a href="{{ "/" | relative_url }}" class="primary-link">{{ site.title }}</a>
|
|
{% for page in site.pages %}
|
|
{% if page.in_header %}
|
|
<a href="{{ page.url | relative_url }}">{{ page.title }}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</nav>
|