it/itf/templates/noel/base.html

78 lines
2.4 KiB
HTML
Executable File

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="keywords" content="Theatre, ITF, India, Best Practices, Theatre Resources" />
<meta name="title" content="India Theatre Forum" />
<meta name="description" content="India Theatre Forum: Best practices and theatre resources for the theatre community in India." />
<title>{% block title %} {% endblock %}</title>
<link rel="stylesheet" href="/static/css/reset.css" type="text/css" />
<link rel="stylesheet" href="/static/css/noel/main.css" type="text/css" />
<!--[if lt IE 9]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]-->
<script type="text/javascript" src="/static/js/jquery-1.7.1.min.js"></script>
{% block extra_head %}
{% endblock %}
</head>
<body>
<div id="header">
<div id="logo">
<img src="/static/images/noel/logo-itf.png" width="281" height="70">
<!--INDIA<br>
<span>THEATRE <span>FORUM</span></span>-->
</div>
<form id="searchForm" action="/search/" method="GET">
<input type="text" placeholder="search" name="q" id="search"/>
</form>
<ul id="navMenu">
<li id="homeList"><a href="/"><img src="/static/images/noel/home.png" width="16" height="17" alt="home" id="homeIcon"></a></li>
{% for m in menus %}
<li><a href="">{{ m.name }}</a>
<ul>
{% for i in m.items %}
<li><a href="{{ i.url }}">{{ i.name }}</a></li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
<ul id="loginMenu">
{% if user.is_authenticated %}
<li><a href="/accounts/logout">Logout</a></li>
{% else %}
<li><a href="/accounts/login">Login</a></li>
<li><a href="/accounts/register">Register</a></li>
{% endif %}
<li><a href="/contact">Contact Us</a></li>
</ul>
</div>
{% block content %}
{% endblock %}
<div id="footer">
{% for m in menus %}
<ul class="footerList">
<a href="">{{ m.name }}</a>
{% for i in m.items %}
<li><a href="{{ i.url }}">- &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{{ i.name }}</a></li>
{% endfor %}
</ul>
{% endfor %}
<p id="copyright">&copy; 2011 India Theatre Forum. All Rights Reserved.</p>
</div>
</body>