| 1 |
<?php // $Id: comment-wrapper.tpl.php,v 1.2 2008/08/12 16:44:42 jmburnz Exp $
|
| 2 |
/**
|
| 3 |
* @file comment-wrapper.tpl.php
|
| 4 |
*
|
| 5 |
* Theme implementation to wrap comments.
|
| 6 |
*
|
| 7 |
* @see template_preprocess_comment_wrapper()
|
| 8 |
* @see theme_comment_wrapper()
|
| 9 |
*/
|
| 10 |
?>
|
| 11 |
<div id="comments">
|
| 12 |
<?php if (!empty($content)): ?>
|
| 13 |
<h2 id="comments-title"<?php if ($node->type == 'forum') { print ' class="element-invisible"'; } ?>>
|
| 14 |
<?php print t('Comments'); ?>
|
| 15 |
</h2>
|
| 16 |
<?php print $content; ?>
|
| 17 |
<?php endif; ?>
|
| 18 |
</div>
|