40 lines
1.7 KiB
HTML
40 lines
1.7 KiB
HTML
{% extends 'festival_wireframe.html' %}
|
|
|
|
{% block title %}
|
|
India Theatre Forum - Projects
|
|
{% 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 class="currentNav"><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><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>
|
|
<li><a href="/itf/bestpractices">Best Practices</a><div class="helper">Best Practices publication</div></li>
|
|
|
|
</ul>
|
|
{% endblock %}
|
|
|
|
|
|
{% block centerCol %}
|
|
<div id="centerContent">
|
|
<h3>Projects</h3>
|
|
<div class="centerText">
|
|
{% for p in projects %}
|
|
<div class="objWrapper">
|
|
<div class="titleLink">
|
|
<a href="/itf/project/{{p.id}}/">{{p.title}}</a>
|
|
</div>
|
|
<div class="intro">
|
|
{{ p.intro|truncatewords:'25' }} <span class="more"><a href="/itf/project/{{p.id}}/">more >>></a></span>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|