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

Diff of /contributions/themes/flexible/node.tpl.php

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

revision 1.2, Mon May 5 18:50:54 2008 UTC revision 1.3, Thu Aug 21 20:06:41 2008 UTC
# Line 1  Line 1 
1  <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clear-block">  <div class="node <?php print $node_classes ?>" id="node-<?php print $node->nid; ?>"><div class="node-inner">
2    
3  <?php print $picture ?>    <?php if ($page == 0): ?>
4        <h2 class="title">
5  <?php if ($page == 0): ?>        <a href="<?php print $node_url; ?>"><?php print $title; ?></a>
6    <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>      </h2>
7  <?php endif; ?>    <?php endif; ?>
8    
9      <?php if ($unpublished) : ?>
10        <div class="unpublished"><?php print t('Unpublished'); ?></div>
11      <?php endif; ?>
12    
13    <div class="content">    <?php if ($picture) print $picture; ?>
     <?php print $content ?>  
   </div>  
14    
   <div class="meta">  
15    <?php if ($submitted): ?>    <?php if ($submitted): ?>
16      <span class="submitted"><?php print $submitted ?></span>      <div class="submitted">
17          <?php print $submitted; ?>
18        </div>
19    <?php endif; ?>    <?php endif; ?>
20    
21    <?php if ($terms && $page): ?>    <?php if (count($taxonomy)): ?>
22      <span class="terms"><?php print t('Categories:').' '.$terms ?></span>      <div class="taxonomy"><?php print t(' in ') . $terms; ?></div>
23    <?php endif;?>    <?php endif; ?>
24    
25      <div class="content">
26        <?php print $content; ?>
27    </div>    </div>
28    
29  <?php    <?php if ($links): ?>
30    if ($links) {      <div class="links">
31      print $links;        <?php print $links; ?>
32    }      </div>
33  ?>    <?php endif; ?>
34    
35  </div>  </div></div>

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

  ViewVC Help
Powered by ViewVC 1.1.2