?
Current File : /home/c/i/d/cideo/site_2015/application/modules/site/views/scripts/index/equipe_v1.phtml
<div class="row">
	
	<div class="col-xs-12 col-md-12 col-lg-12 equipe" itemscope="" itemprop="brand" itemtype="http://schema.org/Organization">
		<div class="text">
			<h1 itemprop="name"><?php echo $this->translate->_("entreprise"); ?></h1>
			<p><?php echo count($this->equipe); ?> <?php echo $this->translate->_("equipe_titre"); ?></p>
		</div>
		<div class="list">
			<ul>
			<?php
			
			if(isset($this->equipe)){ 
				$type = "employee";
				foreach ($this->equipe as $personne){
				if($personne["nom"] == "Lacroix"){
					$type = "founder";
				}
				?>
				<li>
					<h2 itemscope="" itemprop="<?php echo $type; ?>" itemtype="http://schema.org/person">
						<div class="personne">
							<span  itemprop="name">
								<a class="test " href="<?php echo $this->url(array('module'=>'site','controller'=>'index','action'=>'personne', 'nom' => $personne["nom"],'prenom' => $personne["prenom"],'ln'=> $this->ln),"personne",true) ;?>">
									<span class="nom" itemprop="givenName"><?php echo $personne["prenom"]; ?></span>
									<span class="nom" itemprop="familyName"><?php echo $personne["nom"]; ?></span>
								</a>
							</span>
							
							<span class="sep">-</span>
							
							<span class="fonction">
								<strong itemprop="jobTitle"><?php echo $personne["fonction"]; ?></strong>
							</span>
						</div>
						
						<a href="mailto:<?php echo $personne["email"]; ?>">
							<span itemprop="email"><?php echo $personne["email"]; ?></span>
						</a>
					</h2>
				</li>
			<?php
				}
			}
			?>
			</ul>
		</div>
	</div>

</div>