gallery_cover_view.tpl.php in Node Gallery 6
1 theme call to gallery_cover_view.tpl.php
- node_gallery_list in ./
node_gallery.pages.inc - @file Node gallery pages.
File
gallery_cover_view.tpl.phpView source
<?php
$gallery_path = 'node/' . $gallery->nid;
?>
<div class="gallery-cover-view">
<div class="cover-image"><?php
print l($cover_image, $gallery_path, array(
'html' => true,
));
?></div>
<h4 class="title"><?php
print l($gallery->title, $gallery_path);
?></h4>
<div class="meta"><?php
print $meta_data;
?></div>
<?php
print $cover_operations;
?>
</div>