From e252ecfacfe6938314f0e15172ff968a024c147a Mon Sep 17 00:00:00 2001
From: Johannes Soltwedel <38459088+jo-mueller@users.noreply.github.com>
Date: Thu, 2 Jul 2026 15:21:04 +0200
Subject: [PATCH 1/2] fix: gh icon as relative path
---
pre_build.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/pre_build.py b/pre_build.py
index c4f5b922..85aaa639 100644
--- a/pre_build.py
+++ b/pre_build.py
@@ -178,7 +178,6 @@ def render_authors_md():
# The invertocat icon was downloaded from https://brand.github.com/foundations/logo
# and colored in grey according to the guidelines under the "Color" section.
orcid_icon = "https://orcid.org/assets/vectors/orcid.logo.icon.svg"
- github_icon = "icons/invertocat.svg"
for idx, author in enumerate(authors):
name = author['name']
@@ -187,7 +186,7 @@ def render_authors_md():
name += f" [
](https://orcid.org/{author['orcid']})"
if "github" in author:
- name += f" [
](https://github.com/{author['github']})"
+ name += f" [
](https://github.com/{author['github']})"
if idx == len(authors) - 1:
From 5109b33c21ae1c761a48510f515a2edc1893a0a4 Mon Sep 17 00:00:00 2001
From: Johannes Soltwedel <38459088+jo-mueller@users.noreply.github.com>
Date: Fri, 3 Jul 2026 09:15:16 +0200
Subject: [PATCH 2/2] fix: use github icon URL instead of saved icon
---
icons/invertocat.svg | 33 ---------------------------------
pre_build.py | 4 ++--
2 files changed, 2 insertions(+), 35 deletions(-)
delete mode 100644 icons/invertocat.svg
diff --git a/icons/invertocat.svg b/icons/invertocat.svg
deleted file mode 100644
index edcfb0aa..00000000
--- a/icons/invertocat.svg
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
diff --git a/pre_build.py b/pre_build.py
index 85aaa639..86a4d0d9 100644
--- a/pre_build.py
+++ b/pre_build.py
@@ -178,7 +178,7 @@ def render_authors_md():
# The invertocat icon was downloaded from https://brand.github.com/foundations/logo
# and colored in grey according to the guidelines under the "Color" section.
orcid_icon = "https://orcid.org/assets/vectors/orcid.logo.icon.svg"
-
+ github_icon = "https://github.githubassets.com/favicons/favicon.svg"
for idx, author in enumerate(authors):
name = author['name']
@@ -186,7 +186,7 @@ def render_authors_md():
name += f" [
](https://orcid.org/{author['orcid']})"
if "github" in author:
- name += f" [
](https://github.com/{author['github']})"
+ name += f" [
](https://github.com/{author['github']})"
if idx == len(authors) - 1: