view mysite/templates/band/base.html @ 5:e602b5302b94

Added support for countries beside the USA.
author Brian Neal <bgneal@gmail.com>
date Thu, 14 May 2009 00:31:39 +0000
parents 0dcfcdf50c62
children 3e22a6fde2d2
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">
<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="&copy; 2007-2008 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." />
{% 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="header">
   <img src="{{ MEDIA_URL }}images/madeira-p10-logo.jpg" border="0" alt="Madeira Logo" />
</div>

<div id="navleft">
   <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>
   </ul>
</div>

<div class="content">
   {% block content %}
   {% endblock %}
   <div id="footer">
   Website &copy; 2008 by The Madeira <br />
   Visit <a href="http://myspace.com/themadeira">The Madeira on Myspace</a> <br />
   </div>
</div>

</body>
</html>