project/templates/base.html
changeset 1 fda1c66b25f9
child 71 02621b32fb59
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project/templates/base.html	Fri Oct 30 15:09:12 2009 +0530
@@ -0,0 +1,57 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en-us" xml:lang="en-us" >
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
+  <title>{% block title %}{% endblock %} SciPy.in 2009, December 12 - 17, 2009, Trivandrum, Kerala, India</title>
+
+  <link rel="stylesheet" type="text/css" href="/jquery/jquery.jgrowl.css" />
+  <link rel="stylesheet" type="text/css" href="/css/styles-20090826.css" />
+
+  <script type="text/javascript" src="/jquery/jquery.pack.js"></script>
+  <script type="text/javascript" src="/jquery/jquery.jgrowl_minimized.js"></script>
+  <script type="text/javascript" src="/jquery/jquery.cookie.pack.js"></script>
+  <script type="text/javascript" src="/js/kiwipycon.js"></script>
+
+  <link rel="icon" href="/img/favicon.ico" type="image/x-icon" />
+
+  <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="/feeds/blog/" />
+
+</head>
+<body>
+
+<div id="logo">
+  <a href="/"><img src="/img/scipyshiny_small.png"
+    alt="SciPy.in Logo" title="SciPy.in Logo"
+    width="139" height="130" /></a>
+</div>
+
+<div id="header">
+  <h1>{% block header %}SciPy.in 2009</h1><h3>December 12 - 17</h3><h3>Kerala, India{% endblock %}</h3>
+  {% include '_menu_user.html' %}
+</div>
+
+<div id="wrapper">
+  <div id="left">
+  {% include '_menu.html' %}
+  </div>
+  <div id="content">
+  {% if user.is_authenticated %}
+      {% include 'user/_usermenu.html' %}
+  {% endif %}
+
+    {% block content %}{% endblock %}
+  </div>
+  <div id="right">
+  {% include '_sponsors.html' %}
+  </div>
+</div>
+
+<div id="footer">
+   <p rel="credits">Content by the <a href="/about/team/" alt="SciPy.in Team">SciPy.in Team</a>,
+   website by <a href="http://bitbucket.org/vshivak/kiwipycon/src/tip/AUTHORS" alt="Website's Creators">Kiwi Djangonauts</a>,
+   hosting by <a href="http://fosse.in/" alt="Free and Open Source software in Science and Engineering Education">Free and Open Source software in Science and Engineering Education</a>,
+   <!-- TODO: logo design by Jason Nielsen--></p>
+</div>
+
+</body>
+</html>