From 01ee2a375cbfe6dabe6236e2ee20f99f558385d5 Mon Sep 17 00:00:00 2001 From: Lukas Heumos Date: Fri, 11 Sep 2026 11:46:36 +0200 Subject: [PATCH] Fix the dead mask-icon link, a schemeless link and footer heading levels safari-pinned-tab.svg was a symlink in static/, which Hugo does not follow, so the mask-icon URL 404s on every page in production. Point it at the file it was symlinked to and drop the symlink. The gget post linked scverse.org/join without a scheme, so markdown rendered it relative and it resolved under the post's own URL. Footer column headings were h5 following h2 page content, a heading-level skip on every page. They are h2 now, sized in the footer SCSS. --- assets/main.scss | 6 +++++- content/blog/2026-gget-joins-scverse.md | 2 +- layouts/partials/footer.html | 8 ++++---- layouts/partials/head.html | 2 +- static/img/favicon/safari-pinned-tab.svg | 1 - 5 files changed, 11 insertions(+), 8 deletions(-) delete mode 120000 static/img/favicon/safari-pinned-tab.svg diff --git a/assets/main.scss b/assets/main.scss index 44bda221..59f80f20 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -848,8 +848,12 @@ body { text-decoration: none; transition: color 200ms; } - h5 { + h2 { color: $footertextlight; + font-size: 1.25rem; + font-weight: 500; + line-height: 1.2; + margin: 0 0 0.5rem; } li { color: $footertextmuted; diff --git a/content/blog/2026-gget-joins-scverse.md b/content/blog/2026-gget-joins-scverse.md index c867c5a8..c2567f8a 100644 --- a/content/blog/2026-gget-joins-scverse.md +++ b/content/blog/2026-gget-joins-scverse.md @@ -106,7 +106,7 @@ pip install gget The [documentation](https://scverse.org/gget/) covers all modules with worked examples. The [GitHub repository](https://github.com/scverse/gget) is the best place to report issues, propose new database integrations, or contribute. -If you are new to the scverse ecosystem, [scverse.org/join](scverse.org/join) is the place to start. +If you are new to the scverse ecosystem, [scverse.org/join](/join/) is the place to start. We’re excited to see what the community builds together.
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index c02d6231..ff3bff4d 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -2,7 +2,7 @@