Mercurial > public > bravenewsurf
view bns_website/templates/base.html @ 105:f3a275a53bc6
Use a local version of bootstrap 1.4.0.
Twitter stopped hosting the version we were using.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 15 Oct 2013 20:50:29 -0500 |
parents | 1bd48a82c3f2 |
children | 9ca05ec9b64e |
line wrap: on
line source
<!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml"> <head> <title>Brave New Surf | {% block title %}{% endblock %}</title> <meta charset="utf-8" /> {% block custom_meta %}{% endblock %} <link rel="shortcut icon" href="{{ STATIC_URL }}images/favicon.ico" /> <link rel="stylesheet" href="{{ STATIC_URL }}css/bootstrap.min.css" /> <link rel="stylesheet" href="{{ STATIC_URL }}css/fonts/future_bugler.css" /> {% block custom_css %}{% endblock %} <link rel="stylesheet" href="{{ STATIC_URL }}css/base.css" /> {% block custom_js %}{% endblock %} </head> <body>{% block begin_body %}{% endblock %} <div class="container"> {% block content %}{% endblock %} </div> <footer class="footer"> <div class="container"> <p class="pull-right"><a href="#">Back to top</a></p> <p class="bns"> Brave New Surf © 2011 - 2013 <a href="http://www.doublecrownrecords.com/">Double Crown Records</a> - Contact us: <a href="mailto:records@dblcrown.com">records@dblcrown.com</a> </p> <p><small>FENDER, JAZZMASTER and the distinctive headstock design commonly found on FENDER guitars are registered trademarks of <a href="http://www.fender.com">Fender Musical Instruments Corporation</a> and used herein with express written permission. All rights reserved.</small></p> </div> </footer> {% block end_body %}{% endblock %} </body> </html>