?
Current File : /home/c/i/d/cideo/site_2015/application/modules/site/views/scripts/index/equipe.phtml
<header>
	<h1><?php echo count($this->equipe); ?> <?php echo $this->translate->_("equipe_titre"); ?></h1>

</header>

<?php
			
if(isset($this->equipe)){ 
	
	$target = "_self";
	foreach ($this->equipe as $personne){
		$type = "employee";
			$url = "";
		if($personne["nom"] == "Lacroix"){
			$type = "founder";
		}
		if($personne["url"] != ""){
			$url = $personne["url"];
			$target = "_blank";
		}
?>

<div class="row">
	<?php if($url != "") { ?> 
	<a href="<?php echo $url; ?>" target="<?php echo $target; ?>" title="<?php echo $personne["prenom"]; ?> <?php echo $personne["nom"]; ?>, <?php echo $personne["fonction"]; ?>">
	<?php } ?>
		<div class="col-xs-12 col-md-6 col-lg-6 gauche">
			
			<div class="text" itemscope="" itemprop="<?php echo $type; ?>" itemtype="http://schema.org/person">
				
					<h2 class="personne">
						<span  itemprop="name">
							
								
									<span class="nom" itemprop="givenName"><?php echo $personne["prenom"]; ?></span>
									<span class="nom" itemprop="familyName"><?php echo $personne["nom"]; ?></span>
								 	<link itemprop="email" content="<?php echo $personne["email"]; ?>"> 
								 	<?php if($personne["url"] != ""){ ?>
									<link itemprop="sameAs" href="<?php echo $personne["url"]; ?>">
									<?php } ?>
								 	
							 
							
						</span>
						
						<span class="sep">-</span>
						
						<span class="fonction">
							<strong itemprop="jobTitle"><?php echo $personne["fonction"]; ?></strong>
						</span>
						<link itemprop="image" content="<?php echo URL ?>www/equipe/portrait/<?php echo $personne["photo"]; ?>">
					</h2>
				
				
		
			</div>
		</div>

		<div class="col-xs-12 col-md-6 col-lg-6 droite">
			<img class="photo" src="www/equipe/portrait/<?php echo $personne["photo"]; ?>" alt="<?php echo $personne["prenom"]; ?> <?php echo $personne["nom"]; ?>, <?php echo $personne["fonction"]; ?>" />
		</div>
	<?php if($url != "#!") { ?> 
	</a>
	<?php } ?>
</div>


<?php
	}
}
?>