drupal/themes/garland/comment.tpl.php

32 lines
690 B
PHP
Raw Normal View History

<?php
// $Id$
?>
<div class="<?php print $classes . ' ' . $zebra; ?>">
2006-10-29 13:21:46 +00:00
<div class="clearfix">
<?php if ($submitted): ?>
<span class="submitted"><?php print $submitted; ?></span>
<?php endif; ?>
2006-10-29 13:21:46 +00:00
<?php if ($new) : ?>
<span class="new"><?php print drupal_ucfirst($new) ?></span>
<?php endif; ?>
<?php print $picture ?>
2006-10-29 13:21:46 +00:00
<h3><?php print $title ?></h3>
2006-10-29 13:21:46 +00:00
<div class="content">
<?php hide($content['links']); print render($content); ?>
<?php if ($signature): ?>
<div class="clearfix">
<div></div>
<?php print $signature ?>
</div>
<?php endif; ?>
</div>
2006-10-29 13:21:46 +00:00
</div>
<?php print render($content['links']) ?>
2006-10-29 13:21:46 +00:00
</div>