views-slideshow-ddblock.tpl.php in Views Slideshow: Dynamic Display Block 6
Same filename and directory in other branches
File
views-slideshow-ddblock.tpl.phpView source
<?php
/*
 * @file
 * Views Slideshow Dynamic display block module template
 *
 */
?>
<!-- dynamic display block slideshow -->
<p>This preview does just show the node titles of the nodes which will be shown in the slideshow</p>
<?php
foreach ($view->result as $row) {
  ?>
  <?php
  print $row->node_title;
  ?>
  <br />
<?php
}