it/itf/templates/people.html

49 lines
1.7 KiB
HTML

{% extends 'festival_wireframe.html' %}
{% block extra_head %}
<link type="text/css" rel="stylesheet" href="/static/css/people.css" />
<script type="text/javascript" src="/static/js/people.js"></script>
<script type="text/javascript">
</script>
<style type="text/css">
</style>
{% endblock %}
{% block title %}
India Theatre Forum - People
{% 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><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 class="currentNav"><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>Meeting Participants</h3>
<div class="centerText">
{% for p in participants %}
<div class="pWrapper">
<div class="pName"><a href="#">{{p.name}}</a></div>
<div class="pBio">{{p.short_bio}}</div>
</div>
{% endfor %}
</div>
</div>
{% endblock %}