diff options
author | 2015-01-08 23:18:43 +0100 | |
---|---|---|
committer | 2015-01-08 23:18:43 +0100 | |
commit | 1232c417dfdf623e28f77ed5f71a25e920c764b1 (patch) | |
tree | 054e78c8d7501247423a4afb9783c60aea05a86f | |
parent | Fix margins on translation and language tools (diff) | |
download | skin-tyrian-1232c417dfdf623e28f77ed5f71a25e920c764b1.tar.gz skin-tyrian-1232c417dfdf623e28f77ed5f71a25e920c764b1.tar.bz2 skin-tyrian-1232c417dfdf623e28f77ed5f71a25e920c764b1.zip |
Tyrian sync
-rw-r--r-- | TyrianTemplate.php | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/TyrianTemplate.php b/TyrianTemplate.php index 8378c72..6763c6f 100644 --- a/TyrianTemplate.php +++ b/TyrianTemplate.php @@ -84,9 +84,9 @@ class TyrianTemplate extends BaseTemplate { <div class="btn-group btn-group-sm"> <a href="http://get.gentoo.org/" role="button" class="btn get-gentoo"><span class="fa fa-download"></span> <strong>Get Gentoo!</strong></a> <div class="btn-group btn-group-sm"> - <button type="button" class="btn gentoo-org-sites dropdown-toggle" data-toggle="dropdown"> + <a class="btn gentoo-org-sites dropdown-toggle" data-toggle="dropdown" data-target="#" href="#more-gentoo"> <span class="glyphicon glyphicon-globe"></span> gentoo.org sites <span class="caret"></span> - </button> + </a> <ul class="dropdown-menu"> <li><a href="http://www.gentoo.org/" title="Main Gentoo website"><span class="fa fa-home fa-fw"></span> gentoo.org</a></li> <li><a href="http://wiki.gentoo.org/" title="Find and contribute documentation"><span class="fa fa-file-text fa-fw"></span> Wiki</a></li> @@ -150,7 +150,22 @@ class TyrianTemplate extends BaseTemplate { <footer> <div class="container"> <div class="row"> - <div class="col-xs-12 col-md-8"> + <div class="col-xs-12 col-md-3"> + <h3 class="footerhead" id="more-gentoo">More Gentoo Websites</h3> + <ul class="footerlinks"> + <li><a href="http://www.gentoo.org/" title="Main Gentoo website"><span class="fa fa-home fa-fw"></span> gentoo.org</a></li> + <li><a href="http://wiki.gentoo.org/" title="Find and contribute documentation"><span class="fa fa-file-text fa-fw"></span> Wiki</a></li> + <li><a href="https://bugs.gentoo.org/" title="Report issues and find common issues"><span class="fa fa-bug fa-fw"></span> Bugs</a></li> + <li><a href="http://forums.gentoo.org/" title="Discuss with the community"><span class="fa fa-comments-o fa-fw"></span> Forums</a></li> + <li><a href="http://planet.gentoo.org/" title="Find out what's going on in the developer community"><span class="fa fa-rss fa-fw"></span> Planet</a></li> + <li class="divider"></li> + <li><a href="http://twitter.com/gentoo" title="Get the latest Gentoo news"><span class="fa fa-twitter fa-fw"></span> Twitter</a></li> + <li><a href="https://plus.google.com/+Gentoo" title="Get the latest Gentoo news"><span class="fa fa-google-plus fa-fw"></span> Google+</a></li> + <li><a href="https://www.facebook.com/gentoo.org" title="Get updates on the services provided by Gentoo"><span class="fa fa-facebook fa-fw"></span> Facebook</a></li> + </ul> + </div> + <div class="col-xs-12 col-md-offset-1 col-md-8"> + <h3 class="footerhead">Thanks for visiting the Gentoo Wiki</h3> <?php if ( count( $validFooterLinks ) > 0 ) { ?> <ul id="f-list"> <?php foreach ( $validFooterLinks as $aLink ) { ?> @@ -158,8 +173,7 @@ class TyrianTemplate extends BaseTemplate { <?php } ?> </ul> <?php } ?> - </div> - <div class="col-xs-12 col-md-4 footericons"> + <?php foreach ( $validFooterIcons as $blockName => $footerIcons ) { ?> <div id="f-<?php echo htmlspecialchars( $blockName ); ?>ico" style="display: inline-block;"> <?php foreach ( $footerIcons as $icon ) { @@ -167,6 +181,10 @@ class TyrianTemplate extends BaseTemplate { } ?> </div> <?php } ?> + + <h3 class="footerhead">Questions or comments?</h3> + <p>Please direct your questions and concerns regarding articles to the respective Discussion pages.</p> + <p>Remarks pertaining to the whole Wiki are welcome on the <a href="/wiki/Gentoo_Wiki:Suggestions">Suggestions page</a>.</p> </div> </div> <div class="row"> |