template/index.html
changeset 5 7358eeae14d8
child 6 4e819dd96e1f
equal deleted inserted replaced
4:22e66e1ed995 5:7358eeae14d8
       
     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
       
     2 <!--
       
     3 
       
     4 Design by Free CSS Templates
       
     5 http://www.freecsstemplates.org
       
     6 Released for free under a Creative Commons Attribution 2.5 License
       
     7 
       
     8 Title      : Concrete
       
     9 Version    : 1.0
       
    10 Released   : 20080825
       
    11 Description: A Web 2.0 design with fluid width suitable for blogs and small websites.
       
    12 
       
    13 -->
       
    14 <html xmlns="http://www.w3.org/1999/xhtml">
       
    15 {% load i18n %}
       
    16 <head>
       
    17 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
       
    18 <title>{% trans "SciPy India 2009" %}</title>
       
    19 <meta name="keywords" content="" />
       
    20 <meta name="description" content="" />
       
    21 <link href="/site_media/default.css" rel="stylesheet" type="text/css" media="screen" />
       
    22 {% block head %}
       
    23 {% endblock %}
       
    24 </head>
       
    25 <body>
       
    26 {% block body %}
       
    27 {% endblock %}
       
    28 <!-- start header -->
       
    29 <div id="header">
       
    30 	<div id="logo">
       
    31 		<h1><a href="#">SciPy.in</a></h1>		
       
    32 	</div>
       
    33 	<div id="menu">
       
    34 		<ul>
       
    35 			<li class="current_page_item"><a href="/home">Home</a></li>
       
    36 			<li><a href="/register">Register</a></li>
       
    37 			<li><a href="#">Photos</a></li>
       
    38 			<li><a href="#">About</a></li>
       
    39 			<li class="last"><a href="#">Contact</a></li>
       
    40 		</ul>
       
    41 	</div>
       
    42 </div>
       
    43 <!-- end header -->
       
    44 <!-- start page -->
       
    45 <div id="page">	
       
    46   <div id="sidebar">
       
    47 		<ul>
       
    48 		   <li>
       
    49 		   <ul>   
       
    50         {% if request.user.is_anonymous %}
       
    51 		    <li><a href="login">login</a> </li>
       
    52 		    <li><a href="#">register</a> </li>
       
    53 		    {% else %}
       
    54 		    <li>{{ request.user.username }}</li>
       
    55 		    <li><a href="logout" >{% trans "logout" %}</a></li>
       
    56 		    {% endif %}
       
    57 	    </ul>
       
    58 	    <li id="categories">
       
    59 				    <h2>Links</h2>
       
    60 				    <ul>
       
    61 					    <li><a href="#venue">Venue</a> </li>
       
    62 					    <li><a href="#theme">Theme</a> </li>
       
    63 					    <li><a href="#date">Dates</a> </li>
       
    64 				    </ul>
       
    65 	    </li>		
       
    66 		  {% block sidebar %}			
       
    67       {% endblock %}			  
       
    68 	 	</ul>
       
    69 	</div>
       
    70 	<!-- end sidebar --> 
       
    71 	<!-- start content -->
       
    72 	<div id="content">		
       
    73 			{% block centercontent %}			
       
    74       {% endblock %}			
       
    75 	<!-- end content -->
       
    76 	<br style="clear: both;" />
       
    77 </div>
       
    78 <!-- end page -->
       
    79 <!-- start footer -->
       
    80 <div id="footer">
       
    81 	<p class="links">
       
    82 		<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>
       
    83 		&nbsp;&nbsp;&nbsp;
       
    84 		<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>
       
    85 	</p>
       
    86 	<p class="legal">
       
    87 		&copy;2007 Concrete. All Rights Reserved.
       
    88 		&nbsp;&nbsp;&bull;&nbsp;&nbsp;
       
    89 		Design by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>
       
    90 		&nbsp;&nbsp;&bull;&nbsp;&nbsp;
       
    91 		Icons by <a href="http://famfamfam.com/">FAMFAMFAM</a>. </p>
       
    92 </div>
       
    93 <!-- end footer -->
       
    94 </body>
       
    95 </html>