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

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

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


Revision 1.13 - (show annotations) (download) (as text)
Sun Jun 28 14:12:55 2009 UTC (4 months, 4 weeks ago) by bz
Branch: MAIN
CVS Tags: DRUPAL-6--1-21
Changes since 1.12: +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 endif; ?>
14
15 <?php if ($submitted): ?>
16 <span class="c_node-submitted submitted"><?php
17 print
18 t('Published') .' '.
19 '<span class="username">' . t('!username', array('!username' => theme('username', $node))) .'</span> ' .
20 '<span class="datetime">' . t('!datetime', array('!datetime' => format_date($node->created, 'custom', 'D, d/m/Y - H:i'))) . '</span> ' /*.
21 '<span class="datetime">' . t('!datetime', array('!datetime' => format_date($node->changed, 'custom', 'D, d/m/Y - H:i'))) . '</span>' */ ;
22 ?></span>
23 <?php endif; ?>
24
25 <?php if (strlen($picture) > 50): ?>
26 <div class="c_user_picture">
27 <?php print $picture ?>
28 </div>
29 <?php endif; ?>
30
31 <div class="c_node_content content">
32 <?php print $content ?>
33 </div>
34
35 <div class="c_clear">&nbsp;</div>
36
37 <div class="meta">
38 <?php if ($taxonomy): ?>
39 <div class="c_node_terms terms"><?php print $terms ?></div>
40 <?php endif;?>
41 </div>
42
43 <?php if ($links): ?>
44 <div class="c_node_links c_links"><?php print $links; ?></div>
45 <?php endif; ?>
46
47 </div>
48 </div>

  ViewVC Help
Powered by ViewVC 1.1.2