annotate bns_website/templates/base.html @ 5:04991ccaf30c

Prototyped home page. Used fancybox effect on cover art.
author Brian Neal <bgneal@gmail.com>
date Fri, 28 Oct 2011 21:58:54 -0500
parents 71f2941161e9
children 55e1d68da925
rev   line source
bgneal@3 1 <!DOCTYPE html>
bgneal@3 2 <html lang="en">
bgneal@3 3 <head>
bgneal@3 4 <title>Brave New Surf | {% block title %}{% endblock %}</title>
bgneal@3 5 <meta charset="utf-8" />
bgneal@3 6 {% block custom_meta %}{% endblock %}
bgneal@3 7 <link rel="shortcut icon" href="{{ STATIC_URL }}images/favicon.ico">
bgneal@3 8 <link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.3.0/bootstrap.min.css">
bgneal@3 9 <link rel="stylesheet" href="{{ STATIC_URL }}css/base.css">
bgneal@3 10 {% block custom_css %}{% endblock %}
bgneal@3 11 {% block custom_js %}{% endblock %}
bgneal@3 12 </head>
bgneal@3 13 <body>{% block begin_body %}{% endblock %}
bgneal@3 14
bgneal@3 15 <div class="container">
bgneal@3 16 {% block content %}{% endblock %}
bgneal@3 17 </div>
bgneal@3 18
bgneal@3 19 <footer class="footer">
bgneal@3 20 <div class="container">
bgneal@3 21 <p class="pull-right"><a href="#">Back to top</a></p>
bgneal@5 22 <p>Brave New Surf &copy; 2011 <a href="http://www.doublecrownrecords.com/">Double Crown Records</a></p>
bgneal@3 23 <p>Other footer type stuff goes down here.</p>
bgneal@5 24 <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>
bgneal@3 25 </div>
bgneal@3 26 </footer>
bgneal@3 27
bgneal@3 28 {% block end_body %}{% endblock %}
bgneal@3 29 </body>
bgneal@3 30 </html>