My personal blog hauleth.dev
blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update theme and thin up the page

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

This is a binary file and will not be displayed.

+1
static/site.webmanifest
··· 1 + {"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
··· 1 1 {% extends "zerm/templates/index.html" %} 2 2 3 + {% block fonts %} 4 + {% endblock %} 5 + 3 6 {% block script %} 4 - {{ footer::script() }} 5 7 <script async defer data-domain="hauleth.dev" src="https://plausible.io/js/plausible.js"></script> 6 8 {% endblock script %} 7 9 8 10 {% block header %} 9 11 <header class="header"> 10 - <div class="header__inner"> 11 - <div class="header__logo"> 12 - {{ logo::logo() }} 13 - </div> 14 - <div class="menu-trigger">menu</div> 12 + <div class="header__inner"> 13 + <div class="header__logo"> 14 + {{ logo::logo() }} 15 15 </div> 16 - <nav class="menu"> 17 - <ul class="menu__inner"> 18 - {%- for menu_item in config.extra.main_menu -%} 19 - <li> 20 - <a href="{% if menu_item.url is matching("^https?://") %}{{ menu_item.url }}{% else %}{{ get_url(path=menu_item.url) }}{% endif %}">{{ menu_item.name }}</a> 21 - </li> 22 - {%- endfor-%} 23 - </ul> 24 - </nav> 16 + </div> 17 + <nav class="menu"> 18 + <ul class="menu__inner"> 19 + {%- for menu_item in config.extra.main_menu -%} 20 + <li> 21 + <a href="{% if menu_item.url is matching("^https?://") %}{{ menu_item.url }}{% else %}{{ get_url(path=menu_item.url) }}{% endif %}">{{ menu_item.name }}</a> 22 + </li> 23 + {%- endfor-%} 24 + </ul> 25 + </nav> 25 26 </header> 26 27 {% endblock %}