it/itf/templates/resources.html

55 lines
2.1 KiB
HTML
Raw Normal View History

2010-03-03 14:28:00 +00:00
{% extends 'festival_wireframe.html' %}
{% block title %}
India Theatre Forum - Resources
2010-03-03 14:28:00 +00:00
{% endblock %}
2010-12-19 21:53:18 +00:00
{% 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 %}
2010-03-03 14:28:00 +00:00
{% 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>
2010-03-03 14:28:00 +00:00
<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>
2011-04-18 13:36:11 +00:00
<li><a href="/itf/bestpractices">Best Practices</a><div class="helper">Best Practices publication</div></li>
2010-03-03 14:28:00 +00:00
</ul>
{% endblock %}
{% block centerCol %}
<div id="centerContent">
<h3>Resources</h3>
<div class="centerText">
{% for r in resources %}
<div class="objWrapper">
2010-12-19 21:53:18 +00:00
<div class="titleLink pName">
{{ r.title }}
2010-03-03 14:28:00 +00:00
</div>
<div class="intro">
2010-11-26 00:52:54 +00:00
{% autoescape off %}
{{ r.intro }}
2010-11-26 00:56:24 +00:00
{% endautoescape %}
2010-12-19 21:53:18 +00:00
<br />
2011-01-19 10:16:26 +00:00
{% if r.file %}
2010-12-19 21:53:18 +00:00
<a href="/static/{{r.file}}" target="_blank">Download Full Text</a>
2011-01-19 10:16:26 +00:00
{% endif %}
2010-03-03 14:28:00 +00:00
</div>
</div>
{% endfor %}
</div>
</div>
{% endblock %}