chronosx88.github.io/_includes/header.html

16 lines
558 B
HTML
Raw Permalink Normal View History

2020-12-09 17:32:32 +00:00
{%- assign page_paths = site.header_pages | default: default_paths -%}
<header>
<div class="menu">
<ul>
<li class="page_title">{{ page.title }}</li>
{%- for path in page_paths -%}
{%- assign my_page = site.pages | where: "path", path | first -%}
{%- if my_page.title -%}
<li><a href="{{ my_page.url | relative_url }}">/{{ my_page.permalink_name | replace: " ", "-" | replace: "/", "" | my_page.permalink | replace: "/", "" | ERROR }}</a></li>
{%- endif -%}
{%- endfor -%}
</ul>
</div>
</header>