In the HTML5 world we are allowed to have multiple H1's on a page and still be semantically and hierarchically correct as long as there is only one H1 per an article tag.

So, my request is that the next iteration of Omega 4 adds a class to the H1 page title in the page.tpl.php file.

<?php if ($title): ?>
      <h1 class="page__title title"><?php print $title; ?></h1>
<?php endif; ?>

This will help us keep with the SMACSS ideology by adhering to the "decrease reliance on specific HTML" rule.

IMO it is not likely that someone will want the page title H1 to match the same styles as an H1 inside an article tag.

Thanks for your consideration. Thoughts?

Joel