You are here

views-galleriffic-view-gallerifficrows.tpl.php in Views Galleriffic 7

Same filename and directory in other branches
  1. 6 views-galleriffic-view-gallerifficrows.tpl.php

template for views galleriffic row

File

views-galleriffic-view-gallerifficrows.tpl.php
View source
<?php

/**
 * @file
 * template for views galleriffic row
 */
if (isset($fields['slide']) && $fields['slide']->content) {
  ?>
  <li>
    <a class="thumb" href="<?php

  print $fields['slide']->content;
  ?>" title="<?php

  if ($fields['title']) {
    print $fields['title']->stripped;
  }
  ?>" name="<?php

  if ($fields['title']) {
    print $fields['title']->stripped;
  }
  ?>"><img src="<?php

  print $fields['thumbnail']->content;
  ?>" alt="<?php

  if ($fields['title']) {
    print $fields['title']->stripped;
  }
  ?>" /></a>
    <div class="caption">
      <?php

  if ($fields['title']) {
    ?><div class="image-title"><?php

    print $fields['title']->content;
    ?></div> <?php

  }
  ?>
      <?php

  if ($fields['desc']) {
    ?><div class="image-desc"><?php

    print $fields['desc']->content;
    ?></div><?php

  }
  ?>

    </div>
  </li>
<?php

}