You are here

image_field_caption.tpl.php in Image Field Caption 7.2

Same filename and directory in other branches
  1. 7 image_field_caption.tpl.php

Template for each image caption.

$image - contains the image html rendered by Drupal $caption - contains the image field caption string

File

image_field_caption.tpl.php
View source
<?php

/**
 * @file
 * Template for each image caption.
 *
 * $image - contains the image html rendered by Drupal
 * $caption - contains the image field caption string
 */
print $image;
?>
<blockquote class="image-field-caption">
  <?php

print $caption;
?>
</blockquote>