Mercurial > public > madeira
diff mysite/templates/band/base.html @ 12:d771b81e927e
Incorporate blueprints css into the site design.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 11 May 2010 23:18:32 +0000 |
parents | 89978c135246 |
children | f3052378ab47 |
line wrap: on
line diff
--- a/mysite/templates/band/base.html Sun May 02 18:21:38 2010 +0000 +++ b/mysite/templates/band/base.html Tue May 11 23:18:32 2010 +0000 @@ -10,18 +10,24 @@ <meta name="copyright" content="© 2007-2010 Brian Neal" /> <meta name="keywords" lang="en-us" content="instrumental surf, surf, guitar, musician, instro, surf music, Dick Dale, Atlantics, Surf Coasters, Fender, Strat, Stratocaster, Destination Earth, Destination: Earth!,Space Cossacks, Troubadours, reverb" /> <meta name="description" lang="en-us" content="Home page for the instrumental surf band The Madeira. The Madeira combine high energy performances reminiscent of The Atlantics and Dick Dale with exotic melodies and an unusually high level of musicianship. This page contains show dates, photos, videos, and news about the band." /> +<link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/screen.css" type="text/css" media="screen, projection" /> +<link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/print.css" type="text/css" media="print" /> +<!--[if lt IE 8]> +<link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/ie.css" type="text/css" media="screen, projection" /> +<![endif]--> +<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/theme.css" /> {% block custom_css %}{% endblock %} -<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/theme.css" /> {% block custom_js %}{% endblock %} <link rel="shortcut icon" type="image/vnd.microsoft.com" href="{{ MEDIA_URL }}images/favicon.ico" /> </head> <body> +<div class="container"> -<div class="header"> - <img src="{{ MEDIA_URL }}images/madeira-p10-logo.jpg" border="0" alt="Madeira Logo" /> +<div id="header" class="span-24 last"> + <img src="{{ MEDIA_URL }}images/header-logo.jpg" border="0" alt="Madeira Logo" /> </div> -<div id="navleft"> +<div id="navleft" class="span-4 append-1"> <ul> <li><a href="{% url mysite.band.views.index %}">Home</a></li> <li><a href="{% url mysite.band.views.news %}">News</a></li> @@ -40,15 +46,17 @@ </ul> </div> -<div class="content"> +<div id="xxx-content" class="span-19 last"> {% block content %} {% endblock %} - <div id="footer"> - Website © 2008 - 2010 by The Madeira <br /> - Visit <a href="http://myspace.com/themadeira">The Madeira on Myspace</a><br /> -and <a href="http://facebook.com/themadeira">The Madeira on Facebook</a><br /> - </div> </div> +<div id="footer" class="span-24 last"> +Website © 2008 - 2010 by The Madeira <br /> +Visit <a href="http://myspace.com/themadeira">The Madeira on Myspace</a><br /> +and <a href="http://facebook.com/themadeira">The Madeira on Facebook</a><br /> +</div> + +</div> </body> </html>