diff options
author | Alex Legler <alex@a3li.li> | 2015-01-23 13:41:51 +0100 |
---|---|---|
committer | Alex Legler <alex@a3li.li> | 2015-01-23 13:41:51 +0100 |
commit | 4cebb713c175648c96ff6e00c6d42c7a4b7975bd (patch) | |
tree | 7af9330a1db5533d86c322838dc27e6f6340aa3d | |
parent | Fix preferences view on Tyrian (diff) | |
download | skin-tyrian-4cebb713c175648c96ff6e00c6d42c7a4b7975bd.tar.gz skin-tyrian-4cebb713c175648c96ff6e00c6d42c7a4b7975bd.tar.bz2 skin-tyrian-4cebb713c175648c96ff6e00c6d42c7a4b7975bd.zip |
Rework footer
HELLO ULM
-rw-r--r-- | TyrianTemplate.php | 52 | ||||
-rw-r--r-- | main.css | 1 |
2 files changed, 19 insertions, 34 deletions
diff --git a/TyrianTemplate.php b/TyrianTemplate.php index f2eedc1..698a69a 100644 --- a/TyrianTemplate.php +++ b/TyrianTemplate.php @@ -150,46 +150,32 @@ class TyrianTemplate extends BaseTemplate { <footer> <div class="container"> <div class="row"> - <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 ) { ?> + <div class="col-xs-12 col-md-offset-2 col-md-7"> + <?php if ( count( $validFooterLinks ) > 0 ) { ?> + <ul id="f-list" class="spacer"> + <?php foreach ( $validFooterLinks as $aLink ) { ?> + <?php if ($aLink === 'copyright') continue; ?> <li id="<?php echo $aLink ?>"><?php $this->html( $aLink ) ?></li> - <?php } ?> + <?php } ?> </ul> - <?php } ?> - - <?php foreach ( $validFooterIcons as $blockName => $footerIcons ) { ?> - <div id="f-<?php echo htmlspecialchars( $blockName ); ?>ico" style="display: inline-block;"> - <?php foreach ( $footerIcons as $icon ) { - echo $this->getSkin()->makeFooterIcon( $icon ); - } ?> - </div> <?php } ?> - + </div> + <div class="col-xs-12 col-md-3"> <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> + <p>Please direct your questions and concerns regarding articles to the respective Discussion pages.<br /> + 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"> - <div class="col-md-12"> - <strong>© 2001-2015 Gentoo Foundation, Inc.</strong><br /> + <div class="col-xs-3 col-md-2"> + <ul class="footerlinks three-icons"> + <li><a href="http://twitter.com/gentoo" title="@Gentoo on Twitter"><span class="fa fa-twitter fa-fw"></span></a></li> + <li><a href="https://plus.google.com/+Gentoo" title="+Gentoo on Google+"><span class="fa fa-google-plus fa-fw"></span></a></li> + <li><a href="https://www.facebook.com/gentoo.org" title="Gentoo on Facebook"><span class="fa fa-facebook fa-fw"></span></a></li> + </ul> + </div> + <div class="col-xs-9 col-md-9"> + <strong>© 2001–2015 Gentoo Foundation, Inc.</strong><br /> <small> Gentoo is a trademark of the Gentoo Foundation, Inc. The contents of this document, unless otherwise expressly stated, are licensed under the @@ -25,7 +25,6 @@ nav li { list-style-type: none; padding: 0; margin: 0; - margin-bottom: 3em; } #privacy, #about, #disclaimer { |