26 lines
1 KiB
HTML
26 lines
1 KiB
HTML
<header>
|
|
<span class='internal'>
|
|
<a href='/' {%- if page.title == "Welcome!" %} class='current'{% endif -%}>Home</a>
|
|
{%- assign main_pages = site.html_pages | where: "less_important", null -%}
|
|
{%- assign less_important = site.html_pages | where: "less_important", true -%}
|
|
|
|
{%- for html_page in main_pages -%}
|
|
{%- unless html_page.url == '/' -%}
|
|
<a href='{{ html_page.url }}' {%- if page.title == html_page.title %} class='current'{% endif -%}>{{ html_page.title }}</a>
|
|
{%- endunless -%}
|
|
{%- endfor -%}
|
|
|
|
<span class='more'>
|
|
{%- comment -%} todo: maybe make this collapsible? {%- endcomment -%}
|
|
{%- for html_page in less_important -%}
|
|
<a href='{{ html_page.url }}' {%- if page.title == html_page.title %} class='current'{% endif -%}>{{ html_page.title }}</a>
|
|
{%- endfor -%}
|
|
</span>
|
|
</span>
|
|
|
|
<span class='other'>
|
|
<a href='https://bune.city'>Blog</a><a href='https://github.com/lynnesbian'>GitHub</a><a href='https://git.bune.city/lynnesbian'>Gitea</a>
|
|
|
|
<span id='theme-control'></span>
|
|
</span>
|
|
</header>
|