jimsite/scripts/footer.php
Jim Shepich III a9d1e80ed1 Updated lists
2022-02-09 20:12:01 -05:00

12 lines
463 B
PHP

<?php
$socials_string = file_get_contents(__DIR__ ."/../data/socials.json",true);
//__DIR__ constant specifies the path to the script
$socials = json_decode($socials_string);
foreach($socials as $s){
echo "<a class='social' href='" . $s->link . "'><span class='fa-brands fa-" . $s->icon . "' title='".$s->platform."'></span></a>";
}
echo "<br /><span class='copyright'>Copyright &copy; 2021-".date("Y")." Jim Shepich</span>";
?>