This is an automated email from the ASF dual-hosted git repository.
zkaoudi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/wayang-website.git
The following commit(s) were added to refs/heads/main by this push:
new fad12d24 Hide blog author avatars (#127)
fad12d24 is described below
commit fad12d246ae1d7c07415d8b1fea86dfca00a4977
Author: Alexander Alten <[email protected]>
AuthorDate: Fri May 29 12:32:03 2026 +0200
Hide blog author avatars (#127)
* Hide blog author avatars
* Explain avatar CSP constraint
---
src/css/custom.css | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/src/css/custom.css b/src/css/custom.css
index 6a3eea71..e2bfadbf 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -66,3 +66,14 @@
.footer__links {
text-align: center;
}
+
+/* Blog author avatars are hidden intentionally because the Apache-hosted site
+ CSP does not allow loading external images from
avatars.githubusercontent.com,
+ and relying on remote profile images is brittle across a large contributor
set. */
+.blog-wrapper .avatar__photo-link {
+ display: none;
+}
+
+.blog-wrapper .avatar__intro {
+ margin-left: 0;
+}