added css for theatregroup.html
This commit is contained in:
parent
39c10e84dc
commit
08d11bd01a
|
@ -105,4 +105,9 @@ margin-bottom:8px;
|
|||
display:none;}
|
||||
|
||||
.pWrapper {
|
||||
margin-bottom:8px;}
|
||||
margin-bottom:8px;}
|
||||
|
||||
.tab_content h3 {
|
||||
font-size: 150%;
|
||||
padding-bottom: 10px;
|
||||
}
|
|
@ -10,45 +10,46 @@
|
|||
</ul>
|
||||
|
||||
<div id="about" class="tab_content">
|
||||
<h2> {{ name }}</h2>
|
||||
<h3> {{ name }}</h3>
|
||||
|
||||
A brief bio and a history of work. should be able to add photos here
|
||||
|
||||
|
||||
{% if email %}
|
||||
<div id="" class="">
|
||||
{{ email }}
|
||||
<span class="orange">Email: </span> {{ email }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
|
||||
{% if tel %}
|
||||
<div id="" class="">
|
||||
{{ tel }}
|
||||
<span class="orange">Tel: </span> {{ tel }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if founded %}
|
||||
<div id="" class="">
|
||||
{{ founded }}
|
||||
<span class="orange">Year founded: </span> {{ founded }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if website %}
|
||||
<div id="" class="">
|
||||
{{ website }}
|
||||
<span class="orange">Website: </span> {{ website }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
|
||||
{% if about %}
|
||||
<div id="" class="">
|
||||
{{ about }}
|
||||
<span class="orange">About: </span> {{ about }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if nature_of_work %}
|
||||
<div id="" class="">
|
||||
<span class="orange">Nature of Work: </span>
|
||||
<ul>
|
||||
{% for work in nature_of_work %}
|
||||
<li>{{ work }}</li>
|
||||
|
@ -60,7 +61,7 @@
|
|||
|
||||
{% if trainings %}
|
||||
<div id="" class="">
|
||||
Trainings:
|
||||
<span class="orange">Trainings: </span>
|
||||
<ul>
|
||||
{% for training in trainings %}
|
||||
<li>{{ training }} </li>
|
||||
|
@ -72,6 +73,7 @@
|
|||
|
||||
{% if venues %}
|
||||
<div id="" class="">
|
||||
<span class="orange">Venues: </span>
|
||||
<ul>
|
||||
{% for elem in venues %}
|
||||
<li> {{ elem.name }} </li>
|
||||
|
@ -83,6 +85,8 @@
|
|||
|
||||
{% if buzzitems %}
|
||||
<div id="" class="">
|
||||
<span class="orange">Buzz Items: </span>
|
||||
|
||||
<ul>
|
||||
{% for elem in buzzitems %}
|
||||
<li>{{ elem }} </li>
|
||||
|
@ -102,6 +106,8 @@
|
|||
|
||||
{% if people %}
|
||||
<div id="" class="">
|
||||
<span class="orange">People: </span>
|
||||
|
||||
<ul>
|
||||
{% for person in people %}
|
||||
<li> {{ person }} </li>
|
||||
|
@ -117,6 +123,7 @@
|
|||
|
||||
{% if productions %}
|
||||
<div id="" class="">
|
||||
<span class="orange">Productions: </span>
|
||||
<ul>
|
||||
{% for prod in productions %}
|
||||
<li>{{ prod }}</li>
|
||||
|
@ -132,6 +139,8 @@
|
|||
|
||||
{% if awards %}
|
||||
<div id="" class="">
|
||||
<span class="orange">Awards: </span>
|
||||
|
||||
<ul>
|
||||
{% for elem in awards %}
|
||||
<li>{{ elem }}</li>
|
||||
|
@ -148,6 +157,8 @@
|
|||
|
||||
{% if resources %}
|
||||
<div id="" class="">
|
||||
<span class="orange">Resources: </span>
|
||||
|
||||
<ul>
|
||||
{% for elem in resources %}
|
||||
<li>{{ elem }}</li>
|
||||
|
@ -164,6 +175,8 @@
|
|||
|
||||
{% if scripts %}
|
||||
<div id="" class="">
|
||||
<span class="orange">Scripts: </span>
|
||||
|
||||
<ul>
|
||||
{% for elem in scripts %}
|
||||
<li>{{ elem }}</li>
|
||||
|
|
Loading…
Reference in New Issue
Block a user