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

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

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


Revision 1.53 - (show annotations) (download) (as text)
Mon Oct 5 18:51:39 2009 UTC (7 weeks, 5 days ago) by bz
Branch: MAIN
CVS Tags: DRUPAL-6--1-44, HEAD
Changes since 1.52: +0 -0 lines
File MIME type: text/x-php
*** empty log message ***
1 <div id="node-<?php print $node->nid; ?>" class="c_node node<?php
2 if ($sticky) {print ' node-sticky';}
3 if (!$status) {print ' node-unpublished';}
4 print ' node-nid_'.$node->nid;
5 print ' node-type_'.$node->type;
6 ?>">
7 <div class="c_node-subStyle">
8
9 <?php if ($page == 0) { ?>
10 <h2 class="c_node_title">
11 <a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title; ?></a>
12 </h2>
13 <?php } ?>
14
15 <?php if ($submitted) { ?>
16 <span class="c_node-submitted submitted">
17 <?php print t('Published') .' '; ?>
18 <?php print '<span class="username">' . t('!username', array('!username' => theme('username', $node))) .'</span> '; ?>
19 <?php print '<span class="datetime">' . t('!datetime', array('!datetime' => format_date($node->created /* $node->changed */, 'custom', 'D, d/m/Y - H:i'))) . '</span>'; ?>
20 </span>
21 <?php } ?>
22
23 <?php if (strlen($picture) > 50) { ?>
24 <div class="c_user_picture">
25 <?php print $picture ?>
26 </div>
27 <?php } ?>
28
29 <div class="c_node_content content">
30 <?php print $content ?>
31 </div>
32
33 <div class="c_clear">&nbsp;</div>
34
35 <div class="meta">
36 <?php if ($taxonomy) { ?>
37 <div class="c_node_terms terms"><?php print $terms ?></div>
38 <?php } ?>
39 </div>
40
41 <?php if ($links) { ?>
42 <div class="c_node_links c_links"><?php print $links; ?></div>
43 <?php } ?>
44
45 </div>
46 </div>

  ViewVC Help
Powered by ViewVC 1.1.2