root / htmltest / sites / all / themes / blogbuzz / templates / comment-wrapper.tpl.php @ 6c38d829
1 | 85ad3d82 | Assos Assos | <?php
|
---|---|---|---|
2 | // $Id: comment-wrapper.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 id="comments" class="<?php print $classes; ?>"<?php print $attributes; ?>> |
||
19 | <?php if ($content['comments'] && $node->type != 'forum'): ?> |
||
20 | <?php print render($title_prefix); ?> |
||
21 | <h2 class="title"><?php print t('Comments'); ?></h2> |
||
22 | <?php print render($title_suffix); ?> |
||
23 | <?php endif; ?> |
||
24 | |||
25 | <?php print render($content['comments']); ?> |
||
26 | |||
27 | <?php if ($content['comment_form']): ?> |
||
28 | <h2 class="title comment-form"><?php print t('Add new comment'); ?></h2> |
||
29 | <?php print render($content['comment_form']); ?> |
||
30 | <?php endif; ?> |
||
31 | </div> |