oh no i bit more than i could chew oh fuck oh shit *dies*

This commit is contained in:
sundae 2026-04-07 11:43:33 +03:00
commit 19b436ead1
Signed by: sundae
SSH key fingerprint: SHA256:MsJkKuo4PUdjQDpLeaURy81drKkW14exlTHp+8QFu6M
73 changed files with 553 additions and 780 deletions

View file

@ -3,11 +3,11 @@
<ul role="list">
{%for page in pageOrder%}
<li>
<a href="{{ page.url }}" {%if page.url|slugify == currentPage%}aria-current="page"{%endif%}>
<a href="{{page.url}}" {%if page.url|slugify == currentPage%}aria-current="page"{%endif%}>
<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
<path d="{{ icon[page.url|slugify] }}"></path>
<path d="{{icon[page.url|slugify]}}"></path>
</svg>
{{ page.fileSlug|capitalize }}
{{page.fileSlug|capitalize}}
</a>
</li>
{%endfor%}
@ -20,16 +20,16 @@
{%for item in items%}
{%if key != "signal"%}
<li>
<a href="{{ item.src }}">
<img src="/assets/img/icon/{{ item.icon }}" alt="" aria-hidden="true">{{ key|capitalize }}
<a href="{{item.src}}">
<img src="/assets/img/icon/{{item.icon}}" alt="" aria-hidden="true">{{key|capitalize}}
</a>
</li>
{%endif%}
{%endfor%}
{%if key == "signal"%}
<li>
<button command="show-modal" commandfor="{{ items[0].id }}">
<img src="/assets/img/icon/{{ items[0].icon }}" alt="" aria-hidden="true">{{ key|capitalize }}
<button command="show-modal" commandfor="{{items[0].id}}">
<img src="/assets/img/icon/{{items[0].icon}}" alt="" aria-hidden="true">{{key|capitalize}}
</button>
</li>
{%endif%}