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

Contents of /contributions/themes/sodelicious/comment.tpl.php

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


Revision 1.2 - (show annotations) (download) (as text)
Thu Apr 10 19:27:07 2008 UTC (19 months, 2 weeks ago) by paddy
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-5--1-0, HEAD
Changes since 1.1: +28 -19 lines
File MIME type: text/x-php
Various updates to make theme compatible across most browsers
1 <div id="comment-<?php print $comment->cid; ?>" class="comment<?php print ($comment->new) ? ' comment-new' : ''; print (isset($comment->status) && $comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
2 <div class="post_left">
3 <div class="date">
4 <span class="post-month">
5 <?php print date('M', $comment->timestamp); ?>
6 </span>
7 <span class="post-day">
8 <?php print date('d', $comment->timestamp); ?>
9 </span>
10 </div>
11 </div>
12 <div class="post_right">
13 <div class="post_header">
14 <h3 class="titleh3">
15 <?php print $title; ?>
16 </h3>
17 <?php if ($comment->new) { print '<a id="new"></a>' . '<span class="new">' . drupal_ucfirst($new) .'</span>'; } ?>
18 </div>
19 <?php if ($links) { print '<div class="comment_icon"></div><div class="post-tags">' . $links . '</div>'; } ?>
20 <div class="post_content">
21 <?php print $picture ?>
22 <?php print $content; ?>
23 <div class="post_bottom">
24 <?php print t('by') . ' ' . $comment->name; ?>
25 </div>
26 <div class="clear-block clear">
27 </div>
28 </div>
29 </div>
30 </div>

  ViewVC Help
Powered by ViewVC 1.1.2