node--node-gallery-item-type--node-gallery-thumbnail.tpl.php in Node Gallery 7
File
theme/node--node-gallery-item-type--node-gallery-thumbnail.tpl.php
View source
<div id="node-<?php
print $node->nid;
?>" class="<?php
print $classes;
?> clearfix"<?php
print $attributes;
?>>
<?php
print render($title_prefix);
?>
<?php
if (!$page) {
?>
<h2<?php
print $title_attributes;
?>>
<a href="<?php
print $node_url;
?>"><?php
print $title;
?></a>
</h2>
<?php
}
?>
<?php
print render($title_suffix);
?>
<?php
if ($display_submitted) {
?>
<div class="meta submitted">
<?php
print $user_picture;
?>
<?php
print $submitted;
?>
</div>
<?php
}
?>
<div class="content clearfix"<?php
print $content_attributes;
?>>
<?php
hide($content['comments']);
hide($content['links']);
print render($content);
?>
</div>
<?php
if ($teaser || !empty($content['comments']['comment_form'])) {
unset($content['links']['comment']['#links']['comment-add']);
}
$links = render($content['links']);
if ($links) {
?>
<div class="link-wrapper">
<?php
print $links;
?>
</div>
<?php
}
?>
<?php
print render($content['comments']);
?>
</div>