11 lines
306 B
HTML
11 lines
306 B
HTML
{%- for path in page_paths -%}
|
|
{%- assign my_page = site.pages | where: "path", path | first -%}
|
|
{%- if my_page.title -%}
|
|
{%- if my_page.title != 'Home' -%}
|
|
<div>
|
|
<a href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
|
|
</div>
|
|
{%- endif -%}
|
|
{%- endif -%}
|
|
{%- endfor -%}
|