Open SlidingHorn opened 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).
Apparently the newer one hollows out the circles
(the one on the right is the RSS)
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?