Project

General

Profile

Download (801 Bytes) Statistics
| Branch: | Tag: | Revision:
1
<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
2

    
3
  <div class="clear-block">
4
  <?php if ($submitted): ?>
5
    <span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $comment), '!date' => format_date($comment->timestamp))); ?></span>
6
  <?php endif; ?>
7

    
8
  <?php if ($comment->new) : ?>
9
    <a id="new"></a>
10
    <span class="new"><?php print drupal_ucfirst($new) ?></span>
11
  <?php endif; ?>
12

    
13
  <?php print $picture ?>
14

    
15
    <h3><?php print $title ?></h3>
16

    
17
    <div class="content">
18
      <?php print $content ?>
19
    </div>
20

    
21
  </div>
22

    
23
  <?php if ($links): ?>
24
    <div class="links"><?php print $links ?></div>
25
  <?php endif; ?>
26
</div>
(4-4/18)