Mercurial > public > sg101
comparison gpp/templates/base.html @ 312:88b2b9cb8c1f
Fixing #142; cut over to the django.contrib.staticfiles app.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 27 Jan 2011 02:56:10 +0000 |
parents | daa2916f5b34 |
children | 2934a867c2ef |
comparison
equal
deleted
inserted
replaced
311:b1c39788e511 | 312:88b2b9cb8c1f |
---|---|
13 <meta http-equiv="Content-Type" content="text/html" /> | 13 <meta http-equiv="Content-Type" content="text/html" /> |
14 <meta http-equiv="Content-Language" content="en-US" /> | 14 <meta http-equiv="Content-Language" content="en-US" /> |
15 <meta name="robots" content="all" /> | 15 <meta name="robots" content="all" /> |
16 <meta name="Author" content="Brian Neal" /> | 16 <meta name="Author" content="Brian Neal" /> |
17 <meta name="copyright" content="© 2009 Brian Neal" /> | 17 <meta name="copyright" content="© 2009 Brian Neal" /> |
18 <link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/screen.css" type="text/css" media="screen, projection" /> | 18 <link rel="stylesheet" href="{{ STATIC_URL }}css/blueprint/screen.css" type="text/css" media="screen, projection" /> |
19 <link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/print.css" type="text/css" media="print" /> | 19 <link rel="stylesheet" href="{{ STATIC_URL }}css/blueprint/print.css" type="text/css" media="print" /> |
20 <!--[if lt IE 8]> | 20 <!--[if lt IE 8]> |
21 <link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/ie.css" type="text/css" media="screen, projection" /> | 21 <link rel="stylesheet" href="{{ STATIC_URL }}css/blueprint/ie.css" type="text/css" media="screen, projection" /> |
22 <![endif]--> | 22 <![endif]--> |
23 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/base.css" /> | 23 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/base.css" /> |
24 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/shoutbox.css" /> | 24 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/shoutbox.css" /> |
25 {% script_tags "jquery" %} | 25 {% script_tags "jquery" %} |
26 {% block custom_head %}{% endblock %} | 26 {% block custom_head %}{% endblock %} |
27 {% block custom_css %}{% endblock %} | 27 {% block custom_css %}{% endblock %} |
28 {% block custom_js %}{% endblock %} | 28 {% block custom_js %}{% endblock %} |
29 <script type="text/javascript" src="{{ MEDIA_URL }}js/jquery.cycle.all.min.js"></script> | 29 <script type="text/javascript" src="{{ STATIC_URL }}js/jquery.cycle.all.min.js"></script> |
30 <script type="text/javascript" src="{{ MEDIA_URL }}js/shoutbox.js"></script> | 30 <script type="text/javascript" src="{{ STATIC_URL }}js/shoutbox.js"></script> |
31 <!-- <link rel="shortcut icon" type="image/vnd.microsoft.com" href="{{ MEDIA_URL }}images/favicon.ico" /> --> | 31 <!-- <link rel="shortcut icon" type="image/vnd.microsoft.com" href="{{ STATIC_URL }}images/favicon.ico" /> --> |
32 </head> | 32 </head> |
33 <body> | 33 <body> |
34 <div id="page" class="container"> | 34 <div id="page" class="container"> |
35 <div id="header" class="span-24"> | 35 <div id="header" class="span-24"> |
36 <p><a href="/" title="SG101 Home"><img src="{{ MEDIA_URL }}themes/kds/sgLogo.png" alt="SurfGuitar101.com Logo" width="446" height="103" /></a></p> | 36 <p><a href="/" title="SG101 Home"><img src="{{ STATIC_URL }}themes/kds/sgLogo.png" alt="SurfGuitar101.com Logo" width="446" height="103" /></a></p> |
37 </div> | 37 </div> |
38 <div id="header-nav" class="span-24"> | 38 <div id="header-nav" class="span-24"> |
39 <ul> | 39 <ul> |
40 {% if user.is_authenticated %} | 40 {% if user.is_authenticated %} |
41 <li>Welcome, <a href="{% url 'bio-me' %}">{{ user.username }}</a></li> | 41 <li>Welcome, <a href="{% url 'bio-me' %}">{{ user.username }}</a></li> |