prettyphoto_formatters_gallery_markup.tpl.php in prettyPhoto Formatters 7
Template file to customize gallery markup in prettyphoto.
1 theme call to prettyphoto_formatters_gallery_markup.tpl.php
- _prettyphoto_formatters_get_tpl in ./
prettyphoto_formatters.module - Create HTML output to override default markups.
File
templates/prettyphoto_formatters_gallery_markup.tpl.phpView source
<?php
/**
* @file
* Template file to customize gallery markup in prettyphoto.
*/
?>
<div class="pp_gallery">
<a href="#" class="pp_arrow_previous"><?php
print $prev;
?></a>
<div>
<ul>
{gallery}
</ul>
</div>
<a href="#" class="pp_arrow_next"><?php
print $next;
?></a>
</div>