| 1 |
<?php /* $Id: talkpage.tpl.php,v 1.1 2007/12/31 01:13:44 cwgordon7 Exp $ */ ?>
|
| 2 |
<?php
|
| 3 |
/**
|
| 4 |
* Available variables:
|
| 5 |
* $node represents the node whose comments we're displaying.
|
| 6 |
* $comments represents the rendered comments.
|
| 7 |
* $comment_link represents an "add new comment" link.
|
| 8 |
* $add_comments is TRUE if the user has permission to add comments.
|
| 9 |
* $redisplay is TRUE if the "add new comment" link should be redisplayed at the bottom of the page.
|
| 10 |
* $title represents the title of the talk page. Defaults to "Talk".
|
| 11 |
*/
|
| 12 |
?>
|
| 13 |
<p>
|
| 14 |
<?php print $comment_link; ?>
|
| 15 |
</p>
|
| 16 |
<br />
|
| 17 |
<?php print $comments; ?>
|
| 18 |
<?php if ($redisplay): ?>
|
| 19 |
<p>
|
| 20 |
<?php print $comment_link; ?>
|
| 21 |
</p>
|
| 22 |
<?php endif; ?>
|