2020-12-30 19:42:46 +01:00
< footer >
< ul class = " social " >
2021-01-24 14:52:23 +01:00
< ? php
$listmenu = get_nav_menu_locations ();
$menu = wp_get_nav_menu_items ( $listmenu [ 'social' ]);
if ( $menu != null ) {
foreach ( $menu as $menuElement ) {
2023-05-20 10:02:10 +02:00
echo '<li class="social-li"><a class="social-link" href="' . $menuElement -> url . '"><i class="fa fa-fw fa-' . $menuElement -> title . '" aria-hidden="true"></i><span class="sr-only">Accéder à mon ' . $menuElement -> title . '</span></a></li> ' ;
2021-01-24 14:52:23 +01:00
}
2022-12-18 19:19:04 +01:00
2021-01-24 14:52:23 +01:00
}
?>
2023-05-20 12:30:57 +02:00
< li class = " social-li " >
< a class = " social-link " href = " <?php bloginfo('rss2_url'); ?> " >
< i class = " fa fa-fw fa-rss " aria - hidden = " true " ></ i >
< span class = 'sr-only' > Flux RSS du site </ span >
</ a >
</ li >
2022-12-18 19:19:04 +01:00
< li class = " social-li " >
2023-05-20 10:02:10 +02:00
< a class = " social-link " href = " https://kazhnuz.space/links " >
2022-12-18 19:19:04 +01:00
< i class = " fa fa-fw fa-ellipsis-h " aria - hidden = " true " ></ i >
2023-05-20 10:02:10 +02:00
< span class = 'sr-only' > Plus de liens </ span >
2022-12-18 19:19:04 +01:00
</ a >
</ li >
2020-12-30 19:42:46 +01:00
</ ul >
2023-05-20 10:02:10 +02:00
< div class = " container columns " >
< section class = " col-12 col-md-4 " aria - labelledby = " title-footer-section-1 " >
< h2 class = " sr-only " id = " title-footer-section-1 " > Droit d ' utiliations </ h2 >
2022-12-14 14:39:22 +01:00
< p > Les contenus sont diffusé sous licence Creative Common Attribution - Partage à l ' Identique 4.0 - hors mention contraire .</ p >
< p > Ces licences vous autorise à partager et copier mes travaux , tant que vous me citiez en source , et que vous autorisez la même chose pour les travaux qui en seraient dérivés . N ' hésitez pas à partager ! < i class = " text-red fa fa-heart " aria - hidden = " true " ></ i ></ p >
2023-05-20 10:02:10 +02:00
</ section >
2020-12-30 19:42:46 +01:00
2023-05-20 10:02:10 +02:00
< section class = " col-12 col-md-4 " aria - labelledby = " title-footer-section-2 " >
< h2 class = " sr-only " id = " title-footer-section-2 " > Crédits </ h2 >
2022-12-14 14:39:22 +01:00
< p > Ce site est propulsé par < a href = " https://wordpress.org " > Wordpress </ a ></ p >
2023-05-20 10:02:10 +02:00
< p > Le < a href = " https://git.kobold.cafe/kazhnuz.space/kspace-wordpress-theme " > theme wordpress </ a > de ce site est disponible sous licence CC BY - SA et GPL v3 . Il utilise < a href = " https://forkawesome.github.io/Fork-Awesome/ " > Fork - Awesome </ a > pour les icones .</ p >
</ section >
2020-12-30 19:42:46 +01:00
2023-05-20 10:02:10 +02:00
< section class = " col-12 col-md-4 " aria - labelledby = " title-footer-section-3 " >
< h2 class = " sr-only " id = " title-footer-section-3 " > Informations annexes </ h2 >
2022-12-14 14:39:22 +01:00
< p > Kazhnuz Space et les différents sites / services qui le composent sont fourni " tel-quel " , sans garantie . Cependant , toute critique , remarque , etc . est la bienvenue . Pour cela , vous pouvez me contacter à kazhnuz [ at ] kobold [ point ] cafe ou sur les réseaux sociaux visible plus haut </ p >
2023-05-20 10:02:10 +02:00
< ul >
< h3 class = " sr-only " > Pages annexes </ h3 >
< ? php
$listmenu = get_nav_menu_locations ();
$menu = wp_get_nav_menu_items ( $listmenu [ 'footer-pages' ]);
foreach ( $menu as $menuElement ) {
echo '<li><a href="' . $menuElement -> url . '" class="menu-item">' . $menuElement -> title . '</a></li>' ;
}
?>
</ ul >
</ section >
2020-12-30 19:42:46 +01:00
</ div >
</ footer >