You are here

views-slideshow-ddblock.tpl.php in Views Slideshow: Dynamic Display Block 6

Same filename and directory in other branches
  1. 6.2 views-slideshow-ddblock.tpl.php

File

views-slideshow-ddblock.tpl.php
View 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

}