comparison mysite/templates/band/base.html @ 26:efb2da0b5d10

Merging the django1.3 branch into trunk.
author Brian Neal <bgneal@gmail.com>
date Wed, 30 Mar 2011 00:16:32 +0000
parents f3052378ab47
children ec7abd6ac50b
comparison
equal deleted inserted replaced
21:f3052378ab47 26:efb2da0b5d10
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4 {% load url from future %}
4 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5 <head><title>{% block title %}{% endblock %}</title> 6 <head><title>{% block title %}{% endblock %}</title>
6 <meta http-equiv="Content-Type" content="text/html" /> 7 <meta http-equiv="Content-Type" content="text/html" />
7 <meta http-equiv="Content-Language" content="en-US" /> 8 <meta http-equiv="Content-Language" content="en-US" />
8 <meta name="robots" content="all" /> 9 <meta name="robots" content="all" />
9 <meta name="Author" content="Brian Neal" /> 10 <meta name="Author" content="Brian Neal" />
10 <meta name="copyright" content="&copy; 2007-2010 Brian Neal" /> 11 <meta name="copyright" content="&copy; 2007-2010 Brian Neal" />
11 <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" /> 12 <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" />
12 <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." /> 13 <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." />
13 <link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/screen.css" type="text/css" media="screen, projection" /> 14 <link rel="stylesheet" href="{{ STATIC_URL }}css/blueprint/screen.css" type="text/css" media="screen, projection" />
14 <link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/print.css" type="text/css" media="print" /> 15 <link rel="stylesheet" href="{{ STATIC_URL }}css/blueprint/print.css" type="text/css" media="print" />
15 <!--[if lt IE 8]> 16 <!--[if lt IE 8]>
16 <link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/ie.css" type="text/css" media="screen, projection" /> 17 <link rel="stylesheet" href="{{ STATIC_URL }}css/blueprint/ie.css" type="text/css" media="screen, projection" />
17 <![endif]--> 18 <![endif]-->
18 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/theme.css" /> 19 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/theme.css" />
19 {% block custom_css %}{% endblock %} 20 {% block custom_css %}{% endblock %}
20 {% block custom_js %}{% endblock %} 21 {% block custom_js %}{% endblock %}
21 <link rel="shortcut icon" type="image/vnd.microsoft.com" href="{{ MEDIA_URL }}images/favicon.ico" /> 22 <link rel="shortcut icon" type="image/vnd.microsoft.com" href="{{ STATIC_URL }}images/favicon.ico" />
22 </head> 23 </head>
23 <body> 24 <body>
24 <div class="container"> 25 <div class="container">
25 26
26 <div id="header" class="span-24 last"> 27 <div id="header" class="span-24 last">
27 <img src="{{ MEDIA_URL }}images/header-logo.jpg" border="0" alt="Madeira Logo" /> 28 <img src="{{ STATIC_URL }}images/header-logo.jpg" border="0" alt="Madeira Logo" />
28 </div> 29 </div>
29 30
30 <div id="navleft" class="span-4 append-1"> 31 <div id="navleft" class="span-4 append-1">
31 <ul> 32 <ul>
32 <li><a href="{% url mysite.band.views.index %}">Home</a></li> 33 <li><a href="{% url 'mysite.band.views.index' %}">Home</a></li>
33 <li><a href="{% url mysite.band.views.news %}">News</a></li> 34 <li><a href="{% url 'mysite.band.views.news' %}">News</a></li>
34 <li><a href="{% url mysite.band.views.bio %}">Biography</a></li> 35 <li><a href="{% url 'mysite.band.views.bio' %}">Biography</a></li>
35 <li><a href="{% url mysite.band.views.gigs %}">Shows</a></li> 36 <li><a href="{% url 'mysite.band.views.gigs' %}">Shows</a></li>
36 <li><a href="{% url mysite.band.views.press_index %}">Press</a></li> 37 <li><a href="{% url 'mysite.band.views.press_index' %}">Press</a></li>
37 <li><a href="{% url mysite.band.views.songs %}">Songs</a></li> 38 <li><a href="{% url 'mysite.band.views.songs' %}">Songs</a></li>
38 <li><a href="{% url mysite.band.views.photos_index %}">Photos</a></li> 39 <li><a href="{% url 'mysite.band.views.photos_index' %}">Photos</a></li>
39 <li><a href="{% url mysite.band.views.videos_index %}">Videos</a></li> 40 <li><a href="{% url 'mysite.band.views.videos_index' %}">Videos</a></li>
40 <li><a href="{% url mysite.band.views.flyers %}">Flyers</a></li> 41 <li><a href="{% url 'mysite.band.views.flyers' %}">Flyers</a></li>
41 <li><a href="{% url mysite.band.views.buy %}">Buy</a></li> 42 <li><a href="{% url 'mysite.band.views.buy' %}">Buy</a></li>
42 <li><a href="{% url mysite.band.views.contact %}">Contact</a></li> 43 <li><a href="{% url 'mysite.band.views.contact' %}">Contact</a></li>
43 <li><a href="{% url mysite.band.views.mail %}">Mailing List</a></li> 44 <li><a href="{% url 'mysite.band.views.mail' %}">Mailing List</a></li>
44 <li><a href="http://myspace.com/themadeira">Myspace</a></li> 45 <li><a href="http://myspace.com/themadeira">Myspace</a></li>
45 <li><a href="http://facebook.com/themadeira">Facebook</a></li> 46 <li><a href="http://facebook.com/themadeira">Facebook</a></li>
46 </ul> 47 </ul>
47 </div> 48 </div>
48 49