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

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

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


Revision 1.2 - (show annotations) (download) (as text)
Tue Jul 29 05:03:02 2008 UTC (15 months, 4 weeks ago) by couzinhub
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +33 -0 lines
File MIME type: text/x-php
revision of templates and css
1 <?php // $Id: comment.tpl.php,v 1.1.2.1 2008/07/22 23:35:28 couzinhub Exp $ ?>
2
3 <div class="comment<?php if ($comment->status == COMMENT_NOT_PUBLISHED) print ' comment-unpublished'; ?>">
4
5 <?php if ($new != '') { ?>
6 <span class="new"><?php print $new; ?></span>
7 <?php } ?>
8
9 <h3 class="title"><?php print $title; ?></h3>
10
11 <div class="node-info">
12
13 <?php if ($submitted): ?>
14 <div class="submitted"><?php print t('Posted on ') . format_date($comment->timestamp, 'custom', "F jS, Y") . t(' by ') . theme('username', $comment); ?></div>
15 <?php endif; ?>
16
17 <?php if ($links): ?>
18 <div class="links">
19 <?php print $links; ?>
20 </div>
21 <?php endif; ?>
22
23 </div>
24
25 <div class="content">
26 <?php if ($picture): ?>
27 <?php print $picture; ?>
28 <?php endif; ?>
29 <?php print $content; ?>
30 <div class="clear-block"></div>
31 </div>
32
33 </div>

  ViewVC Help
Powered by ViewVC 1.1.2