~michael.nelson/open-goal-tracker/trunk

« back to all changes in this revision

Viewing changes to dev_project/templates/doit/base.html

Merged extract-css-cols-to-base-laout

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
2
 
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3
 
<html xmlns="http://www.w3.org/1999/xhtml">
4
 
 
5
 
  <head>
6
 
    <title>DoIt: {% block title %}Generic Page{% endblock %}</title>
7
 
    <link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/screen.css" type="text/css" media="screen, projection">
8
 
    <link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/print.css" type="text/css" media="print">
9
 
    <!--[if lt IE 8]><link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->
10
 
    <link type="text/css" href="{{ MEDIA_URL }}css/jquery/smoothness/jquery-ui-1.8.custom.css" rel="Stylesheet" />
11
 
    <link rel="stylesheet" href="{{ MEDIA_URL }}css/doit.css" type="text/css" media="screen, projection">
12
 
    <script type="text/javascript" src="{{ MEDIA_URL }}js/jquery/jquery-1.4.2.min.js"></script>
13
 
    <script type="text/javascript" src="{{ MEDIA_URL }}js/jquery/jquery-ui-1.8.custom.min.js"></script>
14
 
    <script type="text/javascript" src="{{ MEDIA_URL }}js/behaviour-sheet.js"></script>
15
 
  </head>
16
 
 
17
 
  <body>
18
 
    {% block content %}{% endblock %}
19
 
  </body>
20
 
</html>