this repo has no description

chore: update theme and thin up the page

+2
config.toml
···
# not currently used from previous theme, but leaving here for now in case I
# feel like adding it.
read_other_posts = "read other posts"
+
+
favicon = "/favicon-32x32.png"
-7
sass/_header.scss
···
--shadow-color: var(--accent-alpha-70);
--shadow: 0 10px var(--shadow-color), -10px 10px var(--shadow-color), 10px 10px var(--shadow-color);
-
@media (max-width: $phone-max-width) {
-
@include menu;
-
top: 50px;
-
right: 0;
-
}
-
&__inner {
display: flex;
flex-wrap: wrap;
···
}
@media (max-width: $phone-max-width) {
-
flex-direction: column;
align-items: flex-start;
padding: 0;
+3
static/android-chrome-192x192.png
···
+
version https://git-lfs.github.com/spec/v1
+
oid sha256:cdb29284a7e1d276bb8af8f98d126b75abdd4389a11309cac168f786b3a71134
+
size 3066
+3
static/android-chrome-512x512.png
···
+
version https://git-lfs.github.com/spec/v1
+
oid sha256:07862d17f43fcb1cbbfae2c9f384d152ab8fcbd7a7b7013bb2ba6472b4d48ac2
+
size 10047
+3
static/apple-touch-icon.png
···
+
version https://git-lfs.github.com/spec/v1
+
oid sha256:5dc0ff8119984bfc86194c247d3ba4ccd50d5fdc48daaa26bdf0cac21116bd99
+
size 2729
+3
static/favicon-16x16.png
···
+
version https://git-lfs.github.com/spec/v1
+
oid sha256:a04023fb4b101cc6020a06d2dd49c26fee08e3323e66736192cb4c1fe542f000
+
size 327
+3
static/favicon-32x32.png
···
+
version https://git-lfs.github.com/spec/v1
+
oid sha256:007e253ff1fb05d95cf68b1f49af7e93b810d4746c292cd574895c731bd3f428
+
size 516
static/favicon.ico

This is a binary file and will not be displayed.

+1
static/site.webmanifest
···
+
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
+16 -15
templates/index.html
···
{% extends "zerm/templates/index.html" %}
+
{% block fonts %}
+
{% endblock %}
+
{% block script %}
-
{{ footer::script() }}
<script async defer data-domain="hauleth.dev" src="https://plausible.io/js/plausible.js"></script>
{% endblock script %}
{% block header %}
<header class="header">
-
<div class="header__inner">
-
<div class="header__logo">
-
{{ logo::logo() }}
-
</div>
-
<div class="menu-trigger">menu</div>
+
<div class="header__inner">
+
<div class="header__logo">
+
{{ logo::logo() }}
</div>
-
<nav class="menu">
-
<ul class="menu__inner">
-
{%- for menu_item in config.extra.main_menu -%}
-
<li>
-
<a href="{% if menu_item.url is matching("^https?://") %}{{ menu_item.url }}{% else %}{{ get_url(path=menu_item.url) }}{% endif %}">{{ menu_item.name }}</a>
-
</li>
-
{%- endfor-%}
-
</ul>
-
</nav>
+
</div>
+
<nav class="menu">
+
<ul class="menu__inner">
+
{%- for menu_item in config.extra.main_menu -%}
+
<li>
+
<a href="{% if menu_item.url is matching("^https?://") %}{{ menu_item.url }}{% else %}{{ get_url(path=menu_item.url) }}{% endif %}">{{ menu_item.name }}</a>
+
</li>
+
{%- endfor-%}
+
</ul>
+
</nav>
</header>
{% endblock %}