/[drupal]/contributions/modules/node_gallery/node-gallery-default.tpl.php
ViewVC logotype

Contents of /contributions/modules/node_gallery/node-gallery-default.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Tue Apr 21 17:48:56 2009 UTC (7 months, 1 week ago) by kmonty
Branch: MAIN
CVS Tags: DRUPAL-6--2-1-ALPHA1, DRUPAL-6--2-0-ALPHA9, DRUPAL-6--2-0-ALPHA8, DRUPAL-6--1-0-ALPHA8, DRUPAL-6--2-0-ALPHA3, DRUPAL-6--2-0-ALPHA2, DRUPAL-6--2-0-ALPHA1, DRUPAL-6--2-0-ALPHA7, DRUPAL-6--2-0-ALPHA6, DRUPAL-6--2-0-ALPHA5, DRUPAL-6--2-0-ALPHA4, HEAD
Branch point for: DRUPAL-6--2, DRUPAL-6--1
Changes since 1.1: +1 -1 lines
File MIME type: text/x-php
Fixed a bug in node-image-default.tpl.php and node-gallery-default.tpl.php files that caused div.taxonomy show up and the word "in" even if there was no taxonomy to display.
1 <div class="node <?php print $node_classes; ?>" id="node-<?php print $node->nid; ?>"><div class="node-inner">
2
3 <?php if ($page == 0): ?>
4 <h2 class="title">
5 <a href="<?php print $node_url; ?>"><?php print $title; ?></a>
6 </h2>
7 <?php endif; ?>
8
9 <?php if ($unpublished): ?>
10 <div class="unpublished"><?php print t('Unpublished'); ?></div>
11 <?php endif; ?>
12
13 <?php if ($submitted): ?>
14 <div class="submitted">
15 <?php print $submitted; ?>
16 </div>
17 <?php endif; ?>
18
19 <?php print $gallery_operations; ?>
20 <?php print $gallery;?>
21
22 <div class="content">
23 <?php print $content; ?>
24 </div>
25
26 <?php if ($terms): ?>
27 <div class="taxonomy"><?php print t(' in ') . $terms; ?></div>
28 <?php endif; ?>
29
30 <?php if ($links): ?>
31 <div class="links">
32 <?php print $links; ?>
33 </div>
34 <?php endif; ?>
35
36 </div></div> <!-- /node-inner, /node -->

  ViewVC Help
Powered by ViewVC 1.1.2