diff --git a/CHANGES.MD b/CHANGES.MD index 6ded2051..f1f5bd63 100644 --- a/CHANGES.MD +++ b/CHANGES.MD @@ -4,6 +4,10 @@ * Correction : - URL incorrecte dans Metaimage - Erreur dans la génération du sitemap + - Taille du texte de la bannnière maximale relative (vmax) + - Préfixe des en-têtes html pour OpenGraph + - Balise Titre dans Socials + - Conformité W3C des URL dans socials ## Version 8.4.2 * Correction : diff --git a/core/core.php b/core/core.php index b3b89f68..6f367cbd 100644 --- a/core/core.php +++ b/core/core.php @@ -1821,7 +1821,7 @@ class layout extends common { */ public function showCopyright() { $items = '
'; - $items .= 'Motorisé par Zwii'; + $items .= 'Motorisé par Zwii'; $items .= ' | Plan du site'; if( ( @@ -2129,18 +2129,23 @@ class layout extends common { switch($socialName) { case 'facebookId': $socialUrl = 'https://www.facebook.com/'; + $title = 'Facebook'; break; case 'googleplusId': $socialUrl = 'https://plus.google.com/'; + $title = 'Google +'; break; case 'instagramId': $socialUrl = 'https://www.instagram.com/'; + $title = 'Instagram'; break; case 'pinterestId': $socialUrl = 'https://pinterest.com/'; + $title = 'Twitter'; break; case 'twitterId': $socialUrl = 'https://twitter.com/'; + $title = 'Youtube'; break; case 'youtubeId': $socialUrl = 'https://www.youtube.com/channel/'; @@ -2149,7 +2154,7 @@ class layout extends common { $socialUrl = ''; } if($socialId !== '') { - $socials .= '' . template::ico(substr($socialName, 0, -2)) . ''; + $socials .= '' . template::ico(substr($socialName, 0, -2)) . ''; } } if($socials !== '') { diff --git a/core/layout/blank.php b/core/layout/blank.php index 7de9d1ad..5ab64b14 100755 --- a/core/layout/blank.php +++ b/core/layout/blank.php @@ -1,6 +1,6 @@ - + diff --git a/core/layout/light.php b/core/layout/light.php index 24c09dbd..f6524630 100755 --- a/core/layout/light.php +++ b/core/layout/light.php @@ -1,6 +1,6 @@ - + diff --git a/core/layout/main.php b/core/layout/main.php index 25948907..08fa4d4d 100755 --- a/core/layout/main.php +++ b/core/layout/main.php @@ -1,6 +1,6 @@ - + diff --git a/core/module/theme/theme.php b/core/module/theme/theme.php index 48a5d30e..d48abd23 100755 --- a/core/module/theme/theme.php +++ b/core/module/theme/theme.php @@ -90,7 +90,7 @@ class theme extends common { '1.8em' => 'Petite', '2em' => 'Moyenne', '2.2em' => 'Grande', - '2.4em' => 'Très grande' + '2.4vmax' => 'Très grande' ]; public static $headerHeights = [ '100px' => 'Très petite (100 pixels)',