Skip to content

Commit

Permalink
adding ARIA role="article" on articles
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiemachado committed Oct 27, 2011
1 parent 6acaa51 commit 78b8375
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">

<header>

Expand Down
2 changes: 1 addition & 1 deletion author.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">

<header>

Expand Down
Binary file modified favicon.ico
100755 → 100644
Binary file not shown.
2 changes: 1 addition & 1 deletion footer.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<footer role="contentinfo">
<footer role="contentinfo">

<div id="inner-footer" class="clearfix">

Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">

<header>

Expand Down
2 changes: 1 addition & 1 deletion page-custom.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">

<header>

Expand Down
2 changes: 1 addition & 1 deletion page.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">

<header>

Expand Down
2 changes: 1 addition & 1 deletion search.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">

<header>

Expand Down
2 changes: 1 addition & 1 deletion single-custom_type.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">

<header>

Expand Down
2 changes: 1 addition & 1 deletion single.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">

<header>

Expand Down
2 changes: 1 addition & 1 deletion taxonomy-custom_cat.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">

<header>

Expand Down

0 comments on commit 78b8375

Please sign in to comment.