Files
theme/_includes/nav.html
T

13 lines
381 B
HTML

<ul>
{%- assign: my_pages = site.pages | sort: "weight" -%}
{%- for my_page in my_pages -%}
{%- if my_page.title -%}
{%- if my_page.url == page.url -%}
<li><a class="active" href="#top">{{ my_page.title }}</a></li>
{%- else -%}
<li><a href="{{ my_page.url | relative_url }}">{{ my_page.title }}</a></li>
{%- endif -%}
{%- endif -%}
{%- endfor -%}
</ul>