/[drupal]/contributions/themes/splender/comment.tpl.php
ViewVC logotype

Diff of /contributions/themes/splender/comment.tpl.php

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

revision 1.1.2.1, Mon Mar 9 19:23:46 2009 UTC revision 1.1.2.2, Mon Apr 20 09:57:15 2009 UTC
# Line 1  Line 1 
1    <div class="comment<?php if ($comment->status == COMMENT_NOT_PUBLISHED) print ' comment-unpublished'; ?>">  <?php
2      <?php if ($picture) {  // $Id: comment.tpl.php,v 1.1.2.5 2009/04/20 09:43:45 skiquel Exp $
3      print $picture;  ?>
4    } ?>  <div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ' '. $status; print ' '. $zebra; ?>">
5  <h3 class="title"><?php print $title; ?></h3><?php if ($new != '') { ?><span class="new"><?php print $new; ?></span><?php } ?>  
6      <div class="submitted"><?php print $submitted; ?></div>    <div class="comment-bar">
7      <div class="content"><?php print $content; ?></div>      <?php if ($submitted): ?>
8      <div class="links">&raquo; <?php print $links; ?></div>        <span class="submitted"><?php print $submitted; ?></span>
9        <?php endif; ?>
10    
11        <?php if ($comment->new) : ?>
12          <span class="new"><?php print drupal_ucfirst($new) ?></span>
13        <?php endif; ?>
14    </div>    </div>
15    
16      <?php print $picture ?>
17    
18      <h3><?php print $title ?></h3>
19    
20      <div class="content">
21        <?php print $content ?>
22        <?php if ($signature): ?>
23          <div>—</div>
24          <?php print $signature ?>
25        <?php endif; ?>
26      </div>
27    
28      <?php if ($links): ?>
29        <div class="links">
30          <?php print $links ?>
31        </div>
32      <?php endif; ?>
33    
34    </div>

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

  ViewVC Help
Powered by ViewVC 1.1.2