Project

General

Profile

Download (941 Bytes) Statistics
| Branch: | Tag: | Revision:
1 d2a09415 Andreas Kohlbecker
<?php 
2
phptemplate_comment_wrapper(NULL, $node->type); 
3 08ea5e99 Andreas Kohlbecker
?>
4
5
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
6
7
<?php print $picture ?>
8
9
<?php if ($page == 0): ?>
10
  <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
11
<?php endif; ?>
12
13
  <?php if ($submitted): ?>
14
    <span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $node), '!date' => format_date($node->created))); ?></span>
15
  <?php endif; ?>
16
17
  <div class="content">
18
    <?php print $content ?>
19
  </div>
20
21
  <div class="clear-block clear">
22
    <div class="meta">
23
    <?php if ($taxonomy): ?>
24
      <div class="terms"><?php print $terms ?></div>
25
    <?php endif;?>
26
    </div>
27
28
    <?php if ($links): ?>
29
      <div class="links"><?php print $links; ?></div>
30
    <?php endif; ?>
31
  </div>
32
33
</div>