root / htmltest / sites / all / themes / blogbuzz / templates / comment.tpl.php @ 6c38d829
1 | 85ad3d82 | Assos Assos | <?php
|
---|---|---|---|
2 | // $Id: comment.tpl.php,v 1.1.2.1 2011/01/23 05:03:51 antsin Exp $
|
||
3 | |||
4 | /*
|
||
5 | +----------------------------------------------------------------+
|
||
6 | | BlogBuzz for Dupal 7.x - Version 1.0 |
|
||
7 | | Copyright (C) 2011 Antsin.com All Rights Reserved. |
|
||
8 | | @license - GNU GENERAL PUBLIC LICENSE |
|
||
9 | |----------------------------------------------------------------|
|
||
10 | | Theme Name: BlogBuzz |
|
||
11 | | Description: BlogBuzz by Antsin |
|
||
12 | | Author: Antsin.com |
|
||
13 | | Website: http://www.antsin.com/ |
|
||
14 | |----------------------------------------------------------------+
|
||
15 | */
|
||
16 | ?>
|
||
17 | |||
18 | <div class="<?php print $classes; ?>"><div class="comment-inner clearfix"> |
||
19 | <?php print $picture;?> |
||
20 | <div class="submitted"><span class="author"><?php print $author; ?></span><span><?php print date("D, d/m/y", $comment->created);?></span></div> |
||
21 | <div class="content"> |
||
22 | <?php if ($title): ?> |
||
23 | <h3 class="title" <?php print $title_attributes; ?>><?php print $title; ?></h3> |
||
24 | <?php endif; ?> |
||
25 | <img src="<?php global $base_url; print $base_url .'/' . $directory; ?>/images/comment_arrow.png" class="comment_arrow" /> |
||
26 | <?php
|
||
27 | hide($content['links']); |
||
28 | print render($content); |
||
29 | ?>
|
||
30 | <?php if ($signature): ?> |
||
31 | <div class="user-signature"><?php print $signature; ?></div> |
||
32 | <?php endif; ?> |
||
33 | </div>
|
||
34 | <div class="links"><?php print render($content['links']) ?></div> |
||
35 | </div></div> <!-- /comment-inner, /comment --> |