comparison gpp/templates/base.html @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children f408971657b9
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5 {% load shoutbox_tags %}
6 {% load irc_tags %}
7 {% load potd_tags %}
8 {% load messages_tags %}
9 <head><title>SurfGuitar101.com | {% block title %}{% endblock %}</title>
10 <meta http-equiv="Content-Type" content="text/html" />
11 <meta http-equiv="Content-Language" content="en-US" />
12 <meta name="robots" content="all" />
13 <meta name="Author" content="Brian Neal" />
14 <meta name="copyright" content="&copy; 2009 Brian Neal" />
15 <link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/screen.css" type="text/css" media="screen, projection" />
16 <link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/print.css" type="text/css" media="print" />
17 <!--[if IE]>
18 <link rel="stylesheet" href="{{ MEDIA_URL }}css/blueprint/ie.css" type="text/css" media="screen, projection" />
19 <![endif]-->
20 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/base.css" />
21 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/shoutbox.css" />
22 <!--<script type="text/javascript" src="{{ MEDIA_URL }}js/shoutbox.js"></script>-->
23 {% block custom_head %}{% endblock %}
24 {% block custom_css %}{% endblock %}
25 {% block custom_js %}{% endblock %}
26 <!-- <link rel="shortcut icon" type="image/vnd.microsoft.com" href="{{ MEDIA_URL }}images/favicon.ico" /> -->
27 </head>
28 <body>
29 <div id="page" class="container">
30 <div id="header" class="span-24">
31 <h1>SurfGuitar101</h1>
32 <p>Header content</p>
33 <ul>
34 {% if user.is_authenticated %}
35 <li>{% unread_messages user %}</li>
36 <li><a href="{% url bio-me %}">My Profile</a></li>
37 <li><a href="{% url accounts-logout %}">Logout</a></li>
38 {% else %}
39 <li><a href="{% url accounts-login %}">Login</a></li>
40 <li><a href="{% url accounts-register %}">Register</a></li>
41 {% endif %}
42 </ul>
43 </div>
44
45 <div id="content-secondary" class="span-4 append-1">
46 <ul class="nav-left">
47 <li><a href="{% url news-index_page page=1 %}">Home</a></li>
48 <li><a href="{% url news-index_page page=1 %}">News</a></li>
49 <li><a href="{% url gcalendar-index %}">Calendar</a></li>
50 <li><a href="{% url contact-form %}">Contact</a></li>
51 <li><a href="{% url irc-main %}">IRC</a></li>
52 <li><a href="{% url bio-members %}">Member List</a></li>
53 <li><a href="{% url membermap-index %}">Member Map</a></li>
54 <li><a href="{% url messages-inbox %}">Private Messages</a></li>
55 <li><a href="{% url podcast-main %}">Podcast</a></li>
56 <li><a href="{% url polls-main %}">Polls</a></li>
57 <li><a href="{% url potd-view %}">Photo of the Day</a></li>
58 <li><a href="{% url weblinks-main %}">Links</a></li>
59 <li><a href="{% url downloads-index %}">Downloads</a></li>
60 </ul>
61 {% photo_of_the_day %}
62 {% shoutbox %}
63 {% irc_status %}
64 </div>
65
66 <div id="content-primary" class="span-19 last">
67 {% block content %}
68 {% endblock %}
69 </div>
70
71
72 <div id="footer" class="span-24">
73 <p>Website &copy; 2008 by Brian Neal</p>
74 </div>
75
76 {% if debug %}
77 <div id="debug" class="span-24">
78 <ol>
79 {% for s in sql_queries %}
80 <li>{{ s.sql }} : <b>({{ s.time }})</b></li>
81 {% endfor %}
82 </ol>
83 </div>
84 {% endif %}
85
86 </div>
87 </body>
88 </html>