drupal/themes/garland/comment.tpl.php

35 lines
866 B
PHP
Raw Normal View History

<?php
// $Id$
?>
<div class="<?php print $classes . ' ' . $zebra; ?>"<?php print $attributes; ?>>
2006-10-29 13:21:46 +00:00
<div class="clearfix">
<?php if ($contextual_links): ?>
<?php print render($contextual_links); ?>
<?php endif; ?>
<span class="submitted"><?php print $created; ?> — <?php print $author; ?></span>
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_attributes; ?>><?php print $title ?></h3>
2006-10-29 13:21:46 +00:00
<div class="content"<?php print $content_attributes; ?>>
<?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>