getpelican / pelican-themes

Themes for Pelican
https://getpelican.com/
2.13k stars 1.09k forks source link

"bricks" theme: can't add social links #712

Closed HengryYang closed 11 months ago

HengryYang commented 3 years ago

I tried to modify the social ink in pelicanconf.py:

SOCIAL = (('anything', 'social_link_here'),)

But there's no social link area on "bricks" theme home page, or any other page.

Am I doing this wrong, or is there just no this feature? Thx!

rilysh commented 11 months ago

Late reply but you need to add your social links in the LINKS variable instead SOCIAL. Create a tuple and add your links there.

e.g.

LINKS = (('example', 'https://example.com')
         ('...',  'https://example.net'))
justinmayer commented 11 months ago

Thanks for the helpful suggestion, @rilysh! 😊

HengryYang commented 11 months ago

Thanks too @rilysh! 😊