2023-05-02 09:23:01 +02:00
|
|
|
<footer class="bg-dark fg-light" aria-labelledby="title-footer">
|
|
|
|
<h1 class="sr-only" id="title-footer">Informations sur le site</h1>
|
2023-11-20 10:05:50 +01:00
|
|
|
<nav class="container menu toolbar bg fg-dark" aria-labelledby="title-footer-social">
|
2023-05-02 09:23:01 +02:00
|
|
|
<h2 class="sr-only" id="title-footer-social">Me suivre</h2>
|
|
|
|
<ul class="f-end">
|
|
|
|
<?php
|
|
|
|
$listmenu = get_nav_menu_locations();
|
|
|
|
$menu = wp_get_nav_menu_items($listmenu['social']);
|
|
|
|
if ($menu != null) {
|
|
|
|
foreach ($menu as $menuElement) {
|
2023-10-16 08:32:58 +02:00
|
|
|
echo '<li><a class="menu-item" rel="me" href="'. $menuElement->url .'"><i class="icon-fw icon-'.$menuElement->title.'" aria-hidden="true"></i><span class="sr-only">Accéder à mon '.$menuElement->title.'</span></a></li> ';
|
2023-05-02 09:23:01 +02:00
|
|
|
}
|
2022-12-17 19:46:29 +01:00
|
|
|
}
|
2023-05-02 09:23:01 +02:00
|
|
|
?>
|
2023-10-16 08:32:58 +02:00
|
|
|
<li><a href="<?php bloginfo('rss2_url'); ?>" class="menu-item"><i class="icon-rss" aria-hidden="true"></i><span class="sr-only">Flux RSS du site</span></a></li>
|
2023-05-02 09:23:01 +02:00
|
|
|
</ul>
|
|
|
|
</nav>
|
2022-12-17 22:34:02 +01:00
|
|
|
<div class="container columns">
|
2023-05-02 09:23:01 +02:00
|
|
|
<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-17 19:46:29 +01:00
|
|
|
<p>Les contenus sont diffusé sous licence Creative Common Attribution - Partage à l'Identique 4.0 - hors mention contraire.</p>
|
2023-10-16 08:32:58 +02:00
|
|
|
<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 icon-heart" aria-hidden="true"></i></p>
|
2023-05-02 09:23:01 +02:00
|
|
|
</section>
|
2022-12-17 19:46:29 +01:00
|
|
|
|
2023-05-02 09:23:01 +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-17 19:46:29 +01:00
|
|
|
<p>Ce site est propulsé par <a href="https://wordpress.org">Wordpress</a></p>
|
2022-12-18 09:46:44 +01:00
|
|
|
<p>Le <a href="https://git.kobold.cafe/quarante-douze/qdouze2-wordpress-theme">theme wordpress</a> de ce site est disponible sous licence CC BY-SA et GPL v3. Il utilise <a href="https://picturepan2.github.io/spectre/">Spectre</a> et <a href="https://forkawesome.github.io/Fork-Awesome/">Fork-Awesome</a>.</p>
|
2023-05-02 09:23:01 +02:00
|
|
|
</section>
|
2022-12-17 19:46:29 +01:00
|
|
|
|
2023-05-02 09:23:01 +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-18 09:46:44 +01:00
|
|
|
<p>Toute critique, remarque, etc. est la bienvenue. Pour cela, vous pouvez me contacter à kazhnuz [at] kobold [point] cafe ou sur mes <a href="https://kazhnuz.space/links">réseaux sociaux</a></p>
|
2023-05-03 12:36:20 +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>
|
2023-05-02 09:23:01 +02:00
|
|
|
</section>
|
2022-12-17 19:46:29 +01:00
|
|
|
</div>
|
|
|
|
</footer>
|