Mercurial > public > madeira
changeset 108:c41a795df154
Bootstrap: add FB and YouTube icons to footer.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 18 Oct 2013 21:25:38 -0500 |
parents | d20dd565f001 |
children | afe5e14c7f94 |
files | madeira/templates/base.html static/images/fb.png static/images/youtube.png |
diffstat | 3 files changed, 20 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/madeira/templates/base.html Fri Oct 18 20:51:06 2013 -0500 +++ b/madeira/templates/base.html Fri Oct 18 21:25:38 2013 -0500 @@ -23,17 +23,30 @@ </header> <div class="container"> - {% block content %} - {% endblock %} - <hr> - <footer class="well well-lg"> - <p class="text-right"> +{% block content %} +{% endblock %} +<hr> + +<footer class="well well-lg"> +<div class="row"> + <div class="col-md-6"> + <a href="http://facebook.com/themadeira"> + <img src="{{ STATIC_URL }}images/fb.png" alt="Vist The Madeira on Facebook" + title="Vist The Madeira on Facebook" /></a> + <a href="http://www.youtube.com/user/TheMadeiraSurf"> + <img src="{{ STATIC_URL }}images/youtube.png" alt="Vist The Madeira on YouTube" + title="Vist The Madeira on YouTube" /></a> + </div> + <div class="col-md-6"> + <p class="text-right"> <small>© 2008 - 2013 by The Madeira <br /> Visit The Madeira on <a href="http://facebook.com/themadeira">Facebook</a> and <a href="http://www.youtube.com/user/TheMadeiraSurf">YouTube</a></small> - </p> - </footer> + </p> + </div> +</div> +</footer> </div> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>