16 lines
596 B
HTML
16 lines
596 B
HTML
<header>
|
|
<span class='internal'>
|
|
<a href='/' {%- if page.title == "Welcome!" %} class='current'{% endif -%}>Home</a>
|
|
{%- for html_page in site.html_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>
|
|
|
|
<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>
|