2010-03-03 14:28:00 +00:00
|
|
|
{% extends 'festival_wireframe.html' %}
|
|
|
|
{% block title %}
|
2010-08-29 17:08:07 +00:00
|
|
|
India Theatre Forum - Resources
|
2010-03-03 14:28:00 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block leftCol %}
|
|
|
|
<ul id="leftNav">
|
|
|
|
<li><a href="/itf/">Home</a></li>
|
|
|
|
<li><a href="/itf/meetings">Activities</a><div class="helper">ITF Meetings - transcripts, audio, discussions.</div></li>
|
|
|
|
<li><a href="/itf/projects">Projects</a><div class="helper">Projects undertaken by the ITF...</div></li>
|
|
|
|
<li><a href="/itf/erang">e-Rang</a><div class="helper">The theatre newsletter...</div></li>
|
|
|
|
<li class="currentNav"><a href="/itf/resources">Resources</a><div class="helper">Downloadable reading materials and resources</div></li>
|
|
|
|
<li><a href="/itf/surveys">Surveys</a><div class="helper">Surveys about theatre in India...</div></li>
|
|
|
|
<li><a href="/itf/publications">Publications</a><div class="helper">Publications by the ITF..</div></li>
|
|
|
|
<li><a href="/itf/people">Participants</a><div class="helper">A list of participants for all ITF meetings</div></li>
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block centerCol %}
|
|
|
|
<div id="centerContent">
|
|
|
|
<h3>Resources</h3>
|
|
|
|
<div class="centerText">
|
|
|
|
{% for r in resources %}
|
|
|
|
<div class="objWrapper">
|
|
|
|
<div class="titleLink">
|
|
|
|
<a href="/static/{{r.file}}">{{ r.title }}</a>
|
|
|
|
</div>
|
|
|
|
<div class="intro">
|
|
|
|
{{ r.intro }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|