changeset 98:67d1d8f643d2

For issue #10, convert to HTML5.
author Brian Neal <bgneal@gmail.com>
date Sun, 06 Oct 2013 13:38:30 -0500
parents f2e49c4496d8
children 55ceb9824443
files madeira/templates/404.html madeira/templates/500.html madeira/templates/admin/base_site.html madeira/templates/band/photo_detail.html madeira/templates/band/photos.html madeira/templates/base.html madeira/templates/email_list/admin_mail.html madeira/templates/gigs/gigs.html madeira/templates/index.html
diffstat 9 files changed, 36 insertions(+), 42 deletions(-) [+]
line wrap: on
line diff
--- a/madeira/templates/404.html	Tue Sep 17 21:10:22 2013 -0500
+++ b/madeira/templates/404.html	Sun Oct 06 13:38:30 2013 -0500
@@ -1,10 +1,9 @@
-<?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">
+<!DOCTYPE html>
+<html lang="en">
 <head><title>Page Not Found</title>
-<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/theme.css" />
-<link rel="shortcut icon" type="image/vnd.microsoft.com" href="{{ STATIC_URL }}images/favicon.ico" />
+<meta charset="utf-8" />
+<link rel="stylesheet" href="{{ STATIC_URL }}css/theme.css" />
+<link rel="shortcut icon" href="{{ STATIC_URL }}images/favicon.ico" />
 </head>
 <body>
 
--- a/madeira/templates/500.html	Tue Sep 17 21:10:22 2013 -0500
+++ b/madeira/templates/500.html	Sun Oct 06 13:38:30 2013 -0500
@@ -1,8 +1,7 @@
-<?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">
+<!DOCTYPE html>
+<html lang="en">
 <head><title>Internal Server Error</title>
+<meta charset="utf-8" />
 </head>
 <body>
 
--- a/madeira/templates/admin/base_site.html	Tue Sep 17 21:10:22 2013 -0500
+++ b/madeira/templates/admin/base_site.html	Sun Oct 06 13:38:30 2013 -0500
@@ -3,7 +3,7 @@
 
 {% block title %}{{ title }} | {% trans 'Madeira site admin' %}{% endblock %}
 {% block extrahead %}
-<link rel="shortcut icon" href="{{ STATIC_URL }}images/favicon.ico" type="image/vnd.microsoft.icon" />
+<link rel="shortcut icon" href="{{ STATIC_URL }}images/favicon.ico" />
 {% endblock %}
 
 {% block branding %}
--- a/madeira/templates/band/photo_detail.html	Tue Sep 17 21:10:22 2013 -0500
+++ b/madeira/templates/band/photo_detail.html	Sun Oct 06 13:38:30 2013 -0500
@@ -1,12 +1,12 @@
 {% extends 'base.html' %}
 {% block title %}The Madeira | Photos: {{ gallery.title }}{% endblock %}
 {% block custom_css %}
-<link rel="stylesheet" href="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.css" type="text/css" media="screen" />
+<link rel="stylesheet" href="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.css" media="screen" />
 {% endblock %}
 {% block custom_js %}
-<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
-<script type="text/javascript" src="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
-<script type="text/javascript">
+<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
+<script src="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
+<script>
 $(function() {
    $('a.fancybox').fancybox();
 });
--- a/madeira/templates/band/photos.html	Tue Sep 17 21:10:22 2013 -0500
+++ b/madeira/templates/band/photos.html	Sun Oct 06 13:38:30 2013 -0500
@@ -1,12 +1,12 @@
 {% extends 'base.html' %}
 {% block title %}The Madeira | Photo Galleries{% endblock %}
 {% block custom_css %}
-<link rel="stylesheet" href="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.css" type="text/css" media="screen" />
+<link rel="stylesheet" href="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.css" media="screen" />
 {% endblock %}
 {% block custom_js %}
-<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
-<script type="text/javascript" src="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
-<script type="text/javascript">
+<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
+<script src="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
+<script>
 $(function() {
    $('a.fancybox').fancybox();
 });
--- a/madeira/templates/base.html	Tue Sep 17 21:10:22 2013 -0500
+++ b/madeira/templates/base.html	Sun Oct 06 13:38:30 2013 -0500
@@ -1,30 +1,26 @@
-<?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">
+<!DOCTYPE html>
+<html 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 charset="utf-8" />
 <meta name="robots" content="all" />
 <meta name="Author" content="Brian Neal" />
-<meta name="copyright" content="(C) Copyright 2007-2012 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" /> 
+<link rel="stylesheet" href="{{ STATIC_URL }}css/blueprint/screen.css" media="screen, projection" />
+<link rel="stylesheet" href="{{ STATIC_URL }}css/blueprint/print.css" media="print" />
 <!--[if lt IE 8]>
-<link rel="stylesheet" href="{{ STATIC_URL }}css/blueprint/ie.css" type="text/css" media="screen, projection" />
+<link rel="stylesheet" href="{{ STATIC_URL }}css/blueprint/ie.css" media="screen, projection" />
 <![endif]-->
-<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/theme.css" />
+<link rel="stylesheet" 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" />
+<link rel="shortcut icon" 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" />
+   <img src="{{ STATIC_URL }}images/header-logo.jpg" alt="Madeira Logo" />
 </div>
 
 <div id="navleft" class="span-4 append-1">
@@ -54,7 +50,7 @@
 <div id="footer" class="span-24 last">
 Website &copy; 2008 - 2013 by The Madeira <br />
 Visit The Madeira on
-<a href="http://facebook.com/themadeira">Facebook</a> and 
+<a href="http://facebook.com/themadeira">Facebook</a> and
 <a href="http://www.youtube.com/user/TheMadeiraSurf">YouTube</a>
 </div>
 
--- a/madeira/templates/email_list/admin_mail.html	Tue Sep 17 21:10:22 2013 -0500
+++ b/madeira/templates/email_list/admin_mail.html	Sun Oct 06 13:38:30 2013 -0500
@@ -2,7 +2,7 @@
 {% block title %}Send mail to mailing list{% endblock %}
 
 {% block extrastyle %}
-<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}admin/css/forms.css" />
+<link rel="stylesheet" href="{{ STATIC_URL }}admin/css/forms.css" />
 {% endblock %}
 
 {% block breadcrumbs %}
--- a/madeira/templates/gigs/gigs.html	Tue Sep 17 21:10:22 2013 -0500
+++ b/madeira/templates/gigs/gigs.html	Sun Oct 06 13:38:30 2013 -0500
@@ -1,12 +1,12 @@
 {% extends 'base.html' %}
 {% block title %}The Madeira | Shows{% endblock %}
 {% block custom_css %}
-<link rel="stylesheet" href="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.css" type="text/css" media="screen" />
+<link rel="stylesheet" href="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.css" media="screen" />
 {% endblock %}
 {% block custom_js %}
-<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
-<script type="text/javascript" src="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
-<script type="text/javascript">
+<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
+<script src="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
+<script>
 $(function() {
    $('a.fancybox').fancybox();
 });
--- a/madeira/templates/index.html	Tue Sep 17 21:10:22 2013 -0500
+++ b/madeira/templates/index.html	Sun Oct 06 13:38:30 2013 -0500
@@ -2,12 +2,12 @@
 {% load gig_tags %}
 {% block title %}The Madeira{% endblock %}
 {% block custom_css %}
-<link rel="stylesheet" href="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.css" type="text/css" media="screen" />
+<link rel="stylesheet" href="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.css" media="screen" />
 {% endblock %}
 {% block custom_js %}
-<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
-<script type="text/javascript" src="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
-<script type="text/javascript">
+<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
+<script src="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
+<script>
 $(function() {
    $('a.fancybox').fancybox();
 });