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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Thu Mar 8 10:58:34 2007 UTC (2 years, 8 months ago) by xweb
Branch: MAIN
CVS Tags: DRUPAL-5--2-0, HEAD
File MIME type: text/x-php
*** empty log message ***
1 <div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>" id="node-<?php print $node->nid; ?>">
2 <?php if ($page == 0): ?>
3 <h2 class="title">
4 <a href="<?php print $node_url ?>"><?php print $title ?></a>
5 </h2>
6 <?php endif; ?>
7
8 <?php if ($picture) print $picture ?>
9
10 <?php if ($submitted or $has_terms): ?>
11 <div class="meta<?php if ($has_terms) : ?> with-taxonomy<?php endif; ?>">
12
13 <?php if ($submitted): ?>
14 <div class="submitted"><?php print t('Posted !date by !name', array('!date' => format_date($node->created, 'custom', "F jS, Y"), '!name' => theme('username', $node))); ?></div>
15 <?php endif; ?>
16
17 <?php if ($has_terms) : ?>
18 <div class="taxonomy"><?php print $terms ?></div>
19 <?php endif; ?>
20
21 </div>
22 <?php endif; ?>
23
24 <div class="content">
25 <?php print $content?>
26 </div>
27
28 <?php if ($links): ?>
29 <div class="links">
30 <?php print $links ?>
31 </div>
32 <?php endif; ?>
33
34 </div>

  ViewVC Help
Powered by ViewVC 1.1.2