?
Current File : /home/c/i/d/cideo/site_2015/application/modules/site/views/scripts/index/reference.phtml
<?php if($this->bandeaux != ""){ ?>
<div class="row">
	<div class="col-md-12 planche">
		<div class="galerie-wrapper">
			<div class="bandeaux" style="background-image: url('www/references/<?php echo $this->projet; ?>/bandeaux/<?php echo $this->bandeaux; ?>');">
				<h1><img src="www/references/<?php echo $this->projet; ?>/logoblanc/<?php echo $this->logoblanc; ?>" alt="Illustration <?php echo $this->altreference; ?>" /></h1>
			</div>
    	</div>
	</div>
</div>
<?php } ?>



<?php if($this->texte != ""){ ?>
<div class="row">
	<div class="col-md-12 texte">
		
		
		<?php
		 foreach ($this->texte  as $ligne){
		 ?>
		 	<p><?php echo $ligne ?></p>
		 <?php
		 }
		 ?>
	
		
	</div>
</div>
<?php } ?>

<?php if($this->sites != ""){ ?>
<div class="row">
	<div class="col-md-12 site">
		
		
		<?php
		
		$i = 0;
		

		 foreach ($this->sites  as $site => $val){
			 ?>
		 	<a class="btn btn-default" href="http://<?php echo $val ?>" target="_blank">voir <?php echo $site; ?></a>
			 <?php
		 $i++;
		 }
		 ?>
	
		
	</div>
</div>
<?php } ?>

<?php if($this->planche != ""){ ?>
<div class="row">
	<div class="col-md-12 planche">
		<img src="www/references/<?php echo $this->projet; ?>/planche/<?php echo $this->planche ?>" alt="Planche <?php echo $this->altreference; ?>" />
	</div>
</div>
<?php } ?>

<?php

//	exit(var_dump($this->galerie ));
 if($this->galerie != "rien"){ ?>
<div class="row last">
	<div class=" photos" id="photos">
	 	<div id="firstbigimage">
			<?php
			$i = 0;
		
			 foreach ($this->galerie["val"]  as $photo){
			 	
			 	$pos_point = strpos($photo, '.');
			
		 		
				$alt = substr($photo, 0, $pos_point); 
				
				
		 	?>
			
				<a href="#" title="<?php echo $alt; ?>" ><img src="www/references/<?php echo $this->projet; ?>/galerie/<?php echo $photo ?>"  alt="<?php echo $alt; ?>" /></a>
		
			<?php
			$i++; 
			
			} ?>
			
		</div>
	</div>
</div>
<?php } ?>