From 29f06402ccc290cf5f5cd4a05f08a656709bb709 Mon Sep 17 00:00:00 2001 From: Subhamoy Biswas Date: Fri, 17 May 2024 14:24:24 +0530 Subject: [PATCH] (refactor): added rel key on footer for mastodon verification --- htdocs/assets/_footer.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) 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']." + "; + } } }