Closed (fixed)
Project:
Zen
Version:
7.x-5.x-dev
Component:
CSS/SASS/HTML markup
Priority:
Minor
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
2 Apr 2013 at 14:45 UTC
Updated:
19 Jul 2013 at 06:01 UTC
It doesn't really harm anything to leave it, but <hgroup> is being removed from W3's HTML 5.0 CR.
http://lists.w3.org/Archives/Public/public-html-admin/2013Apr/0003.html
feynman [zen] (7.x-5.x) $ grep -rn 'hgroup' *
STARTERKIT/css/normalize.css:30:hgroup,
STARTERKIT/sass/_normalize.scss:31:hgroup,
templates/maintenance-page.tpl.php:50: <hgroup id="name-and-slogan">
templates/maintenance-page.tpl.php:60: </hgroup>
templates/page.tpl.php:20: <hgroup class="header--name-and-slogan" id="name-and-slogan">
templates/page.tpl.php:30: </hgroup>
templates/pane-header.tpl.php:21: <hgroup class="header--name-and-slogan" id="name-and-slogan">
templates/pane-header.tpl.php:31: </hgroup>
These three are inside minified files:
js/html5-respond.js:3...
zen-internals/css/styles-fixed.css:1...
zen-internals/css/styles.css:1...
Comments
Comment #1
echoz commentedThanks, rupl. I saw this coming shortly after I added it. Done in commit http://drupalcode.org/project/zen.git/commit/98cb1c7
Comment #3
johnalbinThe <h2> around the site slogan is no longer contained with an hgroup, which means its semantics have changed. I think we need to change the h2 to something else.
We used a plain div in 7.x-3.x: http://drupalcode.org/project/zen.git/blob/refs/heads/7.x-3.x:/templates...
Comment #4
johnalbinI've changed the h2 around the site slogan to a div. :-\