diff --git a/htdocs/assets/_footer.php b/htdocs/assets/_footer.php index de3cbc4..b8128b4 100644 --- a/htdocs/assets/_footer.php +++ b/htdocs/assets/_footer.php @@ -39,9 +39,15 @@ if($footer_socials -> num_rows > 0) { //show all social links while($footer_social = $footer_socials -> fetch_assoc()) { - echo " - ".$footer_social['platform']." - "; + if($footer_social['platform'] == "Mastodon") { + echo " + ".$footer_social['platform']." + "; + } else { + echo " + ".$footer_social['platform']." + "; + } } }