diff options
| author | Frederic Hemberger <mail@frederic-hemberger.de> | 2011-09-21 14:48:38 +0200 |
|---|---|---|
| committer | Frederic Hemberger <mail@frederic-hemberger.de> | 2011-09-21 14:48:38 +0200 |
| commit | a9a901c1362f6a4d6004f445629077e7633abb28 (patch) | |
| tree | 62e6381618f59b82986eccf8ef59f590529e7844 /.themes/classic/source/_layouts/post.html | |
| parent | 2a30d9a1eb5219e5335d1afdd214204d61ea6367 (diff) | |
| download | my_new_personal_website-a9a901c1362f6a4d6004f445629077e7633abb28.tar.xz my_new_personal_website-a9a901c1362f6a4d6004f445629077e7633abb28.zip | |
Fixed misuse of ARIA roles (see http://dev.opera.com/articles/view/introduction-to-wai-aria/)
Diffstat (limited to '.themes/classic/source/_layouts/post.html')
| -rw-r--r-- | .themes/classic/source/_layouts/post.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.themes/classic/source/_layouts/post.html b/.themes/classic/source/_layouts/post.html index e81cc787..3b1208da 100644 --- a/.themes/classic/source/_layouts/post.html +++ b/.themes/classic/source/_layouts/post.html @@ -4,7 +4,7 @@ single: true --- <div> -<article class="hentry"> +<article class="hentry" role="article"> {% include article.html %} <footer> <p class="meta"> @@ -25,7 +25,7 @@ single: true {% endif %} </div> {% unless page.sidebar == false %} -<aside role=sidebar> +<aside class="sidebar"> {% if site.post_asides.size %} {% include_array post_asides %} {% else %} |
