diff options
Diffstat (limited to 'skins/ArchLinux.php')
-rw-r--r-- | skins/ArchLinux.php | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/skins/ArchLinux.php b/skins/ArchLinux.php index a5ce1714..d7a79616 100644 --- a/skins/ArchLinux.php +++ b/skins/ArchLinux.php @@ -103,11 +103,14 @@ class ArchLinuxTemplate extends BaseTemplate { </div><!-- #archnavbar --> <div id="globalWrapper"> -<div id="column-content"><div id="content" class="mw-body-primary"> +<div id="column-content"><div id="content" class="mw-body-primary" role="main"> <a id="top"></a> <?php if($this->data['sitenotice']) { ?><div id="siteNotice"><?php $this->html('sitenotice') ?></div><?php } ?> - <h1 id="firstHeading" class="firstHeading"><span dir="auto"><?php $this->html('title') ?></span></h1> + <h1 id="firstHeading" class="firstHeading" lang="<?php + $this->data['pageLanguage'] = $this->getSkin()->getTitle()->getPageViewLanguage()->getCode(); + $this->html( 'pageLanguage' ); + ?>"><span dir="auto"><?php $this->html('title') ?></span></h1> <div id="bodyContent" class="mw-body"> <div id="siteSub"><?php $this->msg('tagline') ?></div> <div id="contentSub"<?php $this->html('userlangattributes') ?>><?php $this->html('subtitle') ?></div> @@ -127,9 +130,10 @@ class ArchLinuxTemplate extends BaseTemplate { </div> </div></div> <div id="column-one"<?php $this->html('userlangattributes') ?>> + <h2><?php $this->msg( 'navigation-heading' ) ?></h2> <?php $this->cactions(); ?> - <div class="portlet" id="p-personal"> - <h5><?php $this->msg('personaltools') ?></h5> + <div class="portlet" id="p-personal" role="navigation"> + <h3><?php $this->msg('personaltools') ?></h3> <div class="pBody"> <ul<?php $this->html('userlangattributes') ?>> <?php foreach($this->getPersonalTools() as $key => $item) { ?> @@ -139,7 +143,7 @@ class ArchLinuxTemplate extends BaseTemplate { </ul> </div> </div> - <div class="portlet" id="p-logo"> + <div class="portlet" id="p-logo" role="banner"> <?php echo Html::element( 'a', array( 'href' => $this->data['nav_urls']['mainpage']['href'], @@ -157,7 +161,7 @@ class ArchLinuxTemplate extends BaseTemplate { $validFooterLinks = $this->getFooterLinks( "flat" ); // Additional footer links if ( count( $validFooterIcons ) + count( $validFooterLinks ) > 0 ) { ?> -<div id="footer"<?php $this->html('userlangattributes') ?>> +<div id="footer" role="contentinfo"<?php $this->html('userlangattributes') ?>> <?php $footerEnd = '</div>'; } else { @@ -223,8 +227,8 @@ echo $footerEnd; function searchBox() { global $wgUseTwoButtonsSearchForm; ?> - <div id="p-search" class="portlet"> - <h5><label for="searchInput"><?php $this->msg('search') ?></label></h5> + <div id="p-search" class="portlet" role="search"> + <h3><label for="searchInput"><?php $this->msg('search') ?></label></h3> <div id="searchBody" class="pBody"> <form action="<?php $this->text('wgScript') ?>" id="searchform"> <input type='hidden' name="title" value="<?php $this->text('searchtitle') ?>"/> @@ -250,8 +254,8 @@ echo $footerEnd; */ function cactions() { ?> - <div id="p-cactions" class="portlet"> - <h5><?php $this->msg('views') ?></h5> + <div id="p-cactions" class="portlet" role="navigation"> + <h3><?php $this->msg('views') ?></h3> <div class="pBody"> <ul><?php foreach($this->data['content_actions'] as $key => $tab) { @@ -267,8 +271,8 @@ echo $footerEnd; /*************************************************************************************************/ function toolbox() { ?> - <div class="portlet" id="p-tb"> - <h5><?php $this->msg('toolbox') ?></h5> + <div class="portlet" id="p-tb" role="navigation"> + <h3><?php $this->msg('toolbox') ?></h3> <div class="pBody"> <ul> <?php @@ -290,8 +294,8 @@ echo $footerEnd; function languageBox() { if( $this->data['language_urls'] ) { ?> - <div id="p-lang" class="portlet"> - <h5<?php $this->html('userlangattributes') ?>><?php $this->msg('otherlanguages') ?></h5> + <div id="p-lang" class="portlet" role="navigation"> + <h3<?php $this->html('userlangattributes') ?>><?php $this->msg('otherlanguages') ?></h3> <div class="pBody"> <ul> <?php foreach($this->data['language_urls'] as $key => $langlink) { ?> @@ -311,7 +315,7 @@ echo $footerEnd; * @param $cont array|string */ function customBox( $bar, $cont ) { - $portletAttribs = array( 'class' => 'generated-sidebar portlet', 'id' => Sanitizer::escapeId( "p-$bar" ) ); + $portletAttribs = array( 'class' => 'generated-sidebar portlet', 'id' => Sanitizer::escapeId( "p-$bar" ), 'role' => 'navigation' ); $tooltip = Linker::titleAttrib( "p-$bar" ); if ( $tooltip !== false ) { $portletAttribs['title'] = $tooltip; @@ -319,7 +323,7 @@ echo $footerEnd; echo ' ' . Html::openElement( 'div', $portletAttribs ); ?> - <h5><?php $msg = wfMessage( $bar ); echo htmlspecialchars( $msg->exists() ? $msg->text() : $bar ); ?></h5> + <h3><?php $msg = wfMessage( $bar ); echo htmlspecialchars( $msg->exists() ? $msg->text() : $bar ); ?></h3> <div class='pBody'> <?php if ( is_array( $cont ) ) { ?> <ul> |