Compare commits

...

3 Commits

3 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,5 @@
<div id='hamburger'><div id='hb-icon'></div></div> <div id='hamburger'><div id='hb-icon'></div></div>
<header id='header'> <header id='header'>
<h1>Menu</h1> <h1>Menu</h1>
<span class='internal'> <span class='internal'>
@ -10,14 +11,14 @@
{%- for html_page in main_pages -%} {%- for html_page in main_pages -%}
{%- unless html_page.url == '/' -%} {%- unless html_page.url == '/' -%}
<a href='{{ html_page.url }}' {%- if page.title == html_page.title %} class='current'{% endif -%}>{{ html_page.title }}</a> <a href='{{ html_page.url }}' {%- if page.title == html_page.title %} class='current'{% endif -%}>{{ html_page.title }}</a>
{%- endunless -%} {% endunless -%}
{%- endfor -%} {%- endfor -%}
<span class='more'> <span class='more'>
{%- comment -%} todo: maybe make this collapsible? {%- endcomment -%} {% comment -%} todo: maybe make this collapsible? {%- endcomment -%}
{%- for html_page in less_important -%} {%- for html_page in less_important -%}
<a href='{{ html_page.url }}' {%- if page.title == html_page.title %} class='current'{% endif -%}>{{ html_page.title }}</a> <a href='{{ html_page.url }}' {%- if page.title == html_page.title %} class='current'{% endif -%}>{{ html_page.title }}</a>
{%- endfor -%} {% endfor -%}
</span> </span>
</span> </span>

View File

@ -1,3 +1,4 @@
// @license magnet:?xt=urn:btih:5305d91886084f776adcf57509a648432709a7c7&dn=x11.txt X11 License
var use_local_storage = storage_check(); var use_local_storage = storage_check();
var html_element = null; var html_element = null;
@ -67,3 +68,4 @@ window.addEventListener('DOMContentLoaded', (event) => {
dgel('main').classList.toggle('active'); dgel('main').classList.toggle('active');
} }
}); });
// @license-end

BIN
favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB