--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/template/index.html Thu Sep 24 15:20:30 2009 +0530
@@ -0,0 +1,95 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<!--
+
+Design by Free CSS Templates
+http://www.freecsstemplates.org
+Released for free under a Creative Commons Attribution 2.5 License
+
+Title : Concrete
+Version : 1.0
+Released : 20080825
+Description: A Web 2.0 design with fluid width suitable for blogs and small websites.
+
+-->
+<html xmlns="http://www.w3.org/1999/xhtml">
+{% load i18n %}
+<head>
+<meta http-equiv="content-type" content="text/html; charset=utf-8" />
+<title>{% trans "SciPy India 2009" %}</title>
+<meta name="keywords" content="" />
+<meta name="description" content="" />
+<link href="/site_media/default.css" rel="stylesheet" type="text/css" media="screen" />
+{% block head %}
+{% endblock %}
+</head>
+<body>
+{% block body %}
+{% endblock %}
+<!-- start header -->
+<div id="header">
+ <div id="logo">
+ <h1><a href="#">SciPy.in</a></h1>
+ </div>
+ <div id="menu">
+ <ul>
+ <li class="current_page_item"><a href="/home">Home</a></li>
+ <li><a href="/register">Register</a></li>
+ <li><a href="#">Photos</a></li>
+ <li><a href="#">About</a></li>
+ <li class="last"><a href="#">Contact</a></li>
+ </ul>
+ </div>
+</div>
+<!-- end header -->
+<!-- start page -->
+<div id="page">
+ <div id="sidebar">
+ <ul>
+ <li>
+ <ul>
+ {% if request.user.is_anonymous %}
+ <li><a href="login">login</a> </li>
+ <li><a href="#">register</a> </li>
+ {% else %}
+ <li>{{ request.user.username }}</li>
+ <li><a href="logout" >{% trans "logout" %}</a></li>
+ {% endif %}
+ </ul>
+ <li id="categories">
+ <h2>Links</h2>
+ <ul>
+ <li><a href="#venue">Venue</a> </li>
+ <li><a href="#theme">Theme</a> </li>
+ <li><a href="#date">Dates</a> </li>
+ </ul>
+ </li>
+ {% block sidebar %}
+ {% endblock %}
+ </ul>
+ </div>
+ <!-- end sidebar -->
+ <!-- start content -->
+ <div id="content">
+ {% block centercontent %}
+ {% endblock %}
+ <!-- end content -->
+ <br style="clear: both;" />
+</div>
+<!-- end page -->
+<!-- start footer -->
+<div id="footer">
+ <p class="links">
+ <a href="http://validator.w3.org/check/referer" class="xhtml" title="This page validates as XHTML">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a>
+
+ <a href="http://jigsaw.w3.org/css-validator/check/referer" class="css" title="This page validates as CSS">Valid <abbr title="Cascading Style Sheets">CSS</abbr></a>
+ </p>
+ <p class="legal">
+ ©2007 Concrete. All Rights Reserved.
+ •
+ Design by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>
+ •
+ Icons by <a href="http://famfamfam.com/">FAMFAMFAM</a>. </p>
+</div>
+<!-- end footer -->
+</body>
+</html>