aDriv4 - MANAGER
Edit File: node--galerie.tpl.php
<div class="row"> <div class="span2"> </div> <div class="span4 node-type-titre"><h1><?php print $title; ?></h1></div> <div class="span6"> </div> </div> <div class="row"> <div class="span2"> </div> <div class="span10 content"> <?php echo render($content['body']['#items'][0]['value']) ?> <?php $node = node_load($nid); $image = field_get_items('node', $node, 'field_test'); foreach ($image as $key=>$value) { /*$output = field_view_value('node', $node, 'field_test', $image[$key], array( 'type' => 'image', 'settings' => array( 'image_style' => 'mise___l__chelle_100_x_100', //place your image style here 'image_link' => 'content', ), )); print render($output);*/ //var_dump ($image[0]['uri']); $img_url_mini = image_style_url('mise___l__chelle_100_x_100', $image[$key]['uri']); $img_url_colorbox = image_style_url('echelle_largeur_800_pixels', $image[$key]['uri']); ?> <a class="colorbox" rel="gallery-presta" title="<?php echo $alt; ?>" href="<?php echo $img_url_colorbox ?>"> <?php echo theme('image', array('path' => $img_url_mini, 'alt' => $alt, 'title' => "Cliquez ici pour visualiser un agrandissement", 'attributes' => array('class' => 'img-responsive'))); ?> </a> <?php } ?> </div> </div>