s9y / Serendipity

A PHP blog software
https://s9y.org
BSD 3-Clause "New" or "Revised" License
207 stars 88 forks source link

additional fa icons for clean-blog? #779

Open SlidingHorn opened 2 years ago

SlidingHorn commented 2 years ago

I'm looking at adding a Mastodon link rather than a Twitter link, and just to test what the icon would look like, I replaced "fa-twitter" with "fa-mastodon" in the index.tpl file, it doesn't pull the icon from Font Awesome. Instead, it just shows the circle stack icon.

Is there something special that has to be done in order to use other icons?

yellowled commented 2 years ago

Clean-Blog includes Font Awesome from a CDN in a rather old version (4.5.0) which did not include a Mastodon icon yet. Also, it seems that Bootstrap switched CDNs, the maxcdn doesn't seem to offer newer versions.

You can try replacing <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"> with <link href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.4/css/fontawesome.min.css" rel="stylesheet" type="text/css"> in index.tpl (assuming you're aware that changes to your index.tpl will be overwritten by a Serendipity update if you use the bundled version of Clean-Blog).

SlidingHorn commented 2 years ago

Apparently the newer one hollows out the circles

screenshot-20220312154708

(the one on the right is the RSS)