From bc91a1349363d0d6e5aacc72f8dd4c3f0679a7ad Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Tue, 2 May 2023 09:23:01 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20correction=20accessibilit=C3=A9s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #3 Fixes #4 --- components/article.php | 31 +++++++++++-------- components/article/terms.php | 16 ++++++++-- components/footer-content.php | 45 +++++++++++++++------------- components/logo.php | 2 +- components/navbar-category.php | 1 + components/navbar-pages.php | 35 ++++++++++++---------- components/searchform.php | 2 +- components/sidebar/archives.php | 6 ++-- components/sidebar/categories.php | 6 ++-- components/sidebar/last-articles.php | 6 ++-- components/sidebar/links.php | 6 ++-- components/sidebar/tags.php | 6 ++-- home.php | 16 ++++++---- scss/core/_typography.scss | 12 ++++++++ scss/mixins/_panels.scss | 3 +- sidebar.php | 3 +- style.css | 17 ++++++++--- taxonomy-roman.php | 8 ++--- 18 files changed, 137 insertions(+), 84 deletions(-) diff --git a/components/article.php b/components/article.php index a959f62..deaf252 100644 --- a/components/article.php +++ b/components/article.php @@ -5,6 +5,8 @@

+ +

-
-
- - - - -
+ + diff --git a/components/article/terms.php b/components/article/terms.php index f997392..bac3f8a 100644 --- a/components/article/terms.php +++ b/components/article/terms.php @@ -1,19 +1,29 @@ +

Tags et catégories

"; + echo '

Romans

'; $romans = get_the_terms($post->ID, 'roman'); foreach( $romans as $roman ) { - echo " " . $roman->name . ""; + echo "
  •  " . $roman->name . "
  • "; } + echo ""; } else { $categories = get_the_category(); + echo ""; } $tags = get_the_tags(); if ($tags) { + echo ""; } ?> diff --git a/components/footer-content.php b/components/footer-content.php index 827b154..f4a6cd9 100644 --- a/components/footer-content.php +++ b/components/footer-content.php @@ -1,31 +1,36 @@ - diff --git a/components/logo.php b/components/logo.php index 9093918..7437f29 100644 --- a/components/logo.php +++ b/components/logo.php @@ -1,3 +1,3 @@
    -

    Kazhnuz

    +

    <?php echo get_bloginfo( 'name' ); ?>

    diff --git a/components/navbar-category.php b/components/navbar-category.php index 3d5d444..79fadf9 100644 --- a/components/navbar-category.php +++ b/components/navbar-category.php @@ -1,4 +1,5 @@