1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- ?>
- <div id="comments" class="<?php print $classes; ?>"<?php print $attributes; ?>>
- <?php if ($content['comments'] && $node->type != 'forum'): ?>
- <?php print render($title_prefix); ?>
- <h2 class="title"><?php print t('Comments'); ?></h2>
- <?php print render($title_suffix); ?>
- <?php endif; ?>
- <?php print render($content['comments']); ?>
- <?php if ($content['comment_form']): ?>
- <h2 class="title comment-form"><?php print t('Add new comment'); ?></h2>
- <?php print render($content['comment_form']); ?>
- <?php endif; ?>
- </div>
|