From 1f6378932c08c502a6ff0a31947900f46c6aa6c4 Mon Sep 17 00:00:00 2001 From: haemka Date: Thu, 13 Aug 2026 16:44:20 +0000 Subject: [PATCH] Add SOCIAL config for sidebar/About-me social link icons Pairs with the theme's new templates/includes/social_links.html partial. Each entry is (name, url, icon slug). --- pelicanconf.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pelicanconf.py b/pelicanconf.py index 254d7dc..468f9d7 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -40,6 +40,16 @@ LINKS = (('Pelican', 'http://getpelican.com/'), ('Jinja2', 'http://jinja.pocoo.org/'), ('You can modify those links in your config file', '#'),) +# Social links (name, url, icon slug matching theme/templates/icons/.svg) +SOCIAL = ( + ('GitHub', 'https://github.com/haemka', 'github'), + ('LinkedIn', 'https://www.linkedin.com/in/haemka', 'linkedin'), + ('ORCID', 'https://orcid.org/0000-0003-0286-8682', 'orcid'), + ('Mastodon', 'https://chaos.social/@haemka', 'mastodon'), + ('Bluesky', 'https://bsky.app/profile/haemka.de', 'bluesky'), + ('Matrix', 'matrix:u/haemka:matrix.org', 'matrix'), +) + DEFAULT_PAGINATION = False RELATIVE_URLS = True