You are here

discussion-wrapper.tpl.php in Discuss This! 7.2

Same filename and directory in other branches
  1. 7 templates/discussion-wrapper.tpl.php

Default theme implementation to provide an HTML container for discussion.

File

templates/discussion-wrapper.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation to provide an HTML container for discussion.
 */
?>
<div id="discussion comments" class="<?php

print $classes;
?>"<?php

print $attributes;
?>>
  <?php

if ($content['comments']) {
  ?>
    <?php

  print render($title_prefix);
  ?>
    <h2 class="title"><?php

  print t('Discussion');
  ?></h2>
    <?php

  print render($title_suffix);
  ?>
  <?php

}
?>

  <?php

print render($content['comments']);
?>

</div>