diff options
author | Alex Legler <alex@a3li.li> | 2015-04-02 11:09:31 +0200 |
---|---|---|
committer | Alex Legler <alex@a3li.li> | 2015-04-02 11:09:31 +0200 |
commit | b0c622da7c0a8bdabb33d63fd0c2d7c2b9df02ef (patch) | |
tree | ae0ac2aedd349e4e5757200b5017e12f9a2b5b36 /_includes/layout/footer.html | |
download | www-b0c622da7c0a8bdabb33d63fd0c2d7c2b9df02ef.tar.gz www-b0c622da7c0a8bdabb33d63fd0c2d7c2b9df02ef.tar.bz2 www-b0c622da7c0a8bdabb33d63fd0c2d7c2b9df02ef.zip |
Initial version
Diffstat (limited to '_includes/layout/footer.html')
-rw-r--r-- | _includes/layout/footer.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/_includes/layout/footer.html b/_includes/layout/footer.html new file mode 100644 index 0000000..a2a64a0 --- /dev/null +++ b/_includes/layout/footer.html @@ -0,0 +1,38 @@ +<footer> + <div class="container"> + <div class="row"> + <div class="col-xs-12 col-md-offset-2 col-md-7"> + {% if page.footer %}{{ page.footer }}{% endif %} + </div> + <div class="col-xs-12 col-md-3"> + <h3 class="footerhead">Questions or comments?</h3> + Please feel free to <a href="{% if page.contact %}{{ page.contact }}{% else %}{{ site.contact }}{% endif %}">contact us</a>. + </div> + </div> + </div> + <div class="container-sitemap"> + <div class="container"> + {% include layout/footer_sitemap.html %} + </div> + </div> + <div class="container"> + <div class="row"> + <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>© {{ site.copyrightyears }} 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 + <a href="http://creativecommons.org/licenses/by-sa/3.0/" rel="license">CC-BY-SA-3.0</a> license. + The <a href="/inside-gentoo/foundation/name-logo-guidelines.html">Gentoo Name and Logo Usage Guidelines</a> apply. + </small> + </div> + </div> + </div> +</footer>
\ No newline at end of file |