Add SOCIAL config for sidebar/About-me social link icons
Build and deploy / build-and-deploy (push) Successful in 27s

Pairs with the theme's new templates/includes/social_links.html
partial. Each entry is (name, url, icon slug).
This commit is contained in:
2026-08-13 16:44:20 +00:00
parent e764709934
commit 56b1d404f3
+10
View File
@@ -40,6 +40,16 @@ LINKS = (('Pelican', 'http://getpelican.com/'),
('Jinja2', 'http://jinja.pocoo.org/'), ('Jinja2', 'http://jinja.pocoo.org/'),
('You can modify those links in your config file', '#'),) ('You can modify those links in your config file', '#'),)
# Social links (name, url, icon slug matching theme/templates/icons/<slug>.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 DEFAULT_PAGINATION = False
RELATIVE_URLS = True RELATIVE_URLS = True