52 lines
1.9 KiB
HTML
52 lines
1.9 KiB
HTML
{% extends 'festival_wireframe.html' %}
|
|
{% block title %}
|
|
India Theatre Forum - Resources
|
|
{% endblock %}
|
|
{% block extra_head %}
|
|
<link type="text/css" rel="stylesheet" href="/static/css/people.css" />
|
|
<style type="text/css">
|
|
.intro {
|
|
display: none;
|
|
}
|
|
</style>
|
|
<script type="text/javascript" src="/static/js/people.js"></script>
|
|
{% 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="/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 pName">
|
|
{{ r.title }}
|
|
</div>
|
|
<div class="intro">
|
|
{% autoescape off %}
|
|
{{ r.intro }}
|
|
{% endautoescape %}
|
|
<br />
|
|
<a href="/static/{{r.file}}" target="_blank">Download Full Text</a>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|