/[drupal]/contributions/modules/node_media/node-example.tpl.php
ViewVC logotype

Contents of /contributions/modules/node_media/node-example.tpl.php

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


Revision 1.1 - (show annotations) (download) (as text)
Mon Dec 31 08:48:28 2007 UTC (22 months, 4 weeks ago) by develCuy
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-5
File MIME type: text/x-php
First release of Node Media includes the following features:
- Upload mpeg videos
- Upload sounds(only upload)
- Limit number of uploads according to type: image, sound, video
- Some minor bug fixing
1 <div class="node<?php if ($sticky) { print " sticky"; } ?>">
2 <?php if ($picture) {
3 print $picture;
4 }?>
5 <?php if ($page == 0) { ?><h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2><?php }; ?>
6 <span class="submitted"><?php print $submitted?></span>
7 <span class="taxonomy"><?php print $terms?></span>
8
9 <div class="content">
10 <table class="node-content-table"><tr>
11 <td class="node-body">
12 <?php print $content ?>
13 </td>
14
15 <?php if ($node->node_images) { ?>
16 <!-- Node images -->
17 <td class="node-images" rowspan="2">
18 <?php print $node->node_images ?><?php ?>
19 <div style="text-align:center;">
20 <a href="<?php print url('node/'.$node->nid.'/image_gallery'); ?>">Gallery</a>
21 </div>
22 </td>
23 <?php }?>
24
25 </tr><tr>
26 </tr></table>
27 </div>
28
29 <?php if ($links) { ?>
30 <div class="links">&raquo; <?php print $links?></div>
31 <?php }?>
32 </div>

  ViewVC Help
Powered by ViewVC 1.1.2