/[drupal]/contributions/themes/sib/node.tpl.php
ViewVC logotype

Contents of /contributions/themes/sib/node.tpl.php

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


Revision 1.3 - (show annotations) (download) (as text)
Sun Aug 5 10:50:48 2007 UTC (2 years, 3 months ago) by vadbarsdrupalorg
Branch: MAIN
CVS Tags: DRUPAL-5--1-1, HEAD
Changes since 1.2: +0 -0 lines
File MIME type: text/x-php
first release
1 <div class="<?php print $node_classes ?>" id="node-<?php print $node->nid; ?>">
2
3 <?php if ($page == 0): ?>
4
5 <?php
6 if($type!='storymin') {
7 ?>
8 <h1 class="title">
9 <a href="<?php print $node_url ?>"><?php print $title; ?></a>
10 </h1>
11 <?php
12 } else {
13 ?>
14 <h1 class="title">
15 <?php print $title; ?>
16 </h1>
17 <?php
18 }
19 ?>
20
21 <?php endif; ?>
22
23 <?php if ($picture) print $picture; ?>
24
25
26
27
28 <?php if ($type!='storymin'): ?>
29 <?php if ($submitted): ?>
30 <span class="submitted"><?php print format_date($node->created, 'custom', "F jS, Y") . theme('username', $node); ?></span>
31 <?php endif; ?>
32
33 <?php if (count($taxonomy)): ?>
34 <div class="taxonomy"><?php print t(' in ') . $terms ?></div>
35 <?php endif; ?>
36 <?php endif; ?>
37
38 <div class="content">
39 <?php print $content; ?>
40 </div>
41
42 <?php if ($type!='storymin'): ?>
43 <?php if ($links): ?>
44 <div class="links">
45 <?php print $links; ?>
46 </div>
47 <?php endif; ?>
48 <?php endif; ?>
49
50 </div>

  ViewVC Help
Powered by ViewVC 1.1.2