Revert "Update footer.php"

This reverts commit 67ca4fcde0.
This commit is contained in:
Joshua Laase 2023-01-02 09:30:07 -06:00
parent 67ca4fcde0
commit 495ceb8bcc

View file

@ -2,13 +2,7 @@
<div class="container"> <div class="container">
<ul class="footer-links ps-0 mb-1"> <ul class="footer-links ps-0 mb-1">
<?php foreach (HTML::socialNetworks() as $key => $name) { <?php foreach (HTML::socialNetworks() as $key => $name) {
$link = '<a '; echo '<a class="color-blue" href="'.$site->{$key}().'"><li class="d-inline-block pe-4">' . $name . '</li></a>';
if(strtolower($key) == 'mastodon') {
$link .= 'rel="me" ';
}
$link .= 'class="color-blue" href="'.$site->{$key}().'"><li class="d-inline-block pe-4">' . $name . '</li></a>';
echo $link;
} }
?> ?>
</ul> </ul>