From a169271c75ab3f989da9c56e325908fce43ac46f Mon Sep 17 00:00:00 2001 From: David Beniamine <david.beniamine@tetras-libre.fr> Date: Mon, 8 Apr 2019 13:23:09 +0200 Subject: [PATCH] Light footer --- footer.php | 5 +++-- functions.php | 11 ++++++----- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/footer.php b/footer.php index 105ecf8..9c77482 100644 --- a/footer.php +++ b/footer.php @@ -7,10 +7,11 @@ <?php echo html_meta('legal_informations'); ?> </div> <div class="col-md-6 col-sd-12 barre"> - <?php social_list("class=col-md-12")?> + <!--<?php social_list("class=col-md-12")?>--> <ul class="col-md-12 barre"> + <li><a href="mailto:<?php echo social_account('mail') ?>"<?php echo social_logo('mail').' '.site_meta('mail', '') ?></a></li> <li><a href="<?php echo base_url(); ?>" title="Retour à l'accueil.">Accueil</a></li> - <li><a href="<?php echo base_url('admin'); ?>" title="Administration">Administration</a></li> + <!-- <li><a href="<?php echo base_url('admin'); ?>" title="Administration">Administration</a></li> --> <li><a href="<?php echo rss_url(); ?>"><?php echo social_logo('rss'); ?> RSS</a></li> </ul> <?php echo html_meta('w3c'); ?> diff --git a/functions.php b/functions.php index 9167560..23c9b38 100644 --- a/functions.php +++ b/functions.php @@ -78,11 +78,12 @@ function social_account($network) { function social_list($properties) { $NETWORKS_URLS = array ( 'mail' => 'mailto:', - 'github' => 'https://github.com/', - 'framasphere' => 'https://framasphere.org/people/', - 'mastodon' => 'https://framapiaf.org/', - 'facebook' => 'https://facebook.com/', - 'twitter' => 'https://twitter.com/', + /* 'github' => 'https://github.com/', */ + /* 'framasphere' => 'https://framasphere.org/people/', */ + /* 'mastodon' => 'https://framapiaf.org/', */ + /* 'facebook' => 'https://facebook.com/', */ + /* 'twitter' => 'https://twitter.com/', */ + /* 'linkedin' => 'https://linkedin.com', */ ); echo "<ul ".$properties.">"; foreach ($NETWORKS_URLS as $network => $network_url){ -- GitLab