Mercurial > public > madeira
view mysite/templates/band/base.html @ 88:7245c769e31e django1.3
Close this branch. I'm not sure if I merged it correctly to the
default branch, because the graphlog doesn't look right. But the
changes were made to default somehow. So closing this off to prevent
future confusion.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 13 Apr 2013 18:08:19 -0500 |
parents | ead7bd49c9e0 |
children | ec7abd6ac50b |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> {% load url from future %} <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head><title>{% block title %}{% endblock %}</title> <meta http-equiv="Content-Type" content="text/html" /> <meta http-equiv="Content-Language" content="en-US" /> <meta name="robots" content="all" /> <meta name="Author" content="Brian Neal" /> <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="{{ STATIC_URL }}css/blueprint/screen.css" type="text/css" media="screen, projection" /> <link rel="stylesheet" href="{{ STATIC_URL }}css/blueprint/print.css" type="text/css" media="print" /> <!--[if lt IE 8]> <link rel="stylesheet" href="{{ STATIC_URL }}css/blueprint/ie.css" type="text/css" media="screen, projection" /> <![endif]--> <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/theme.css" /> {% block custom_css %}{% endblock %} {% block custom_js %}{% endblock %} <link rel="shortcut icon" type="image/vnd.microsoft.com" href="{{ STATIC_URL }}images/favicon.ico" /> </head> <body> <div class="container"> <div id="header" class="span-24 last"> <img src="{{ STATIC_URL }}images/header-logo.jpg" border="0" alt="Madeira Logo" /> </div> <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> <li><a href="{% url 'mysite.band.views.bio' %}">Biography</a></li> <li><a href="{% url 'mysite.band.views.gigs' %}">Shows</a></li> <li><a href="{% url 'mysite.band.views.press_index' %}">Press</a></li> <li><a href="{% url 'mysite.band.views.songs' %}">Songs</a></li> <li><a href="{% url 'mysite.band.views.photos_index' %}">Photos</a></li> <li><a href="{% url 'mysite.band.views.videos_index' %}">Videos</a></li> <li><a href="{% url 'mysite.band.views.flyers' %}">Flyers</a></li> <li><a href="{% url 'mysite.band.views.buy' %}">Buy</a></li> <li><a href="{% url 'mysite.band.views.contact' %}">Contact</a></li> <li><a href="{% url 'mysite.band.views.mail' %}">Mailing List</a></li> <li><a href="http://myspace.com/themadeira">Myspace</a></li> <li><a href="http://facebook.com/themadeira">Facebook</a></li> </ul> </div> <div id="xxx-content" class="span-19 last"> {% block content %} {% endblock %} </div> <div id="footer" class="span-24 last"> Website © 2008 - 2011 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>