File: /home/nexper/public_html/sites/all/themes/omega/omega/templates/comment.tpl.php
<article<?php print $attributes; ?>>
<header>
<?php print render($title_prefix); ?>
<?php if ($title): ?>
<h3<?php print $title_attributes; ?>><?php print $title ?></h3>
<?php endif; ?>
<?php print render($title_suffix); ?>
<?php if ($new): ?>
<em class="new"><?php print $new ?></em>
<?php endif; ?>
<?php if (isset($unpublished)): ?>
<em class="unpublished"><?php print $unpublished; ?></em>
<?php endif; ?>
</header>
<?php print $picture; ?>
<footer class="comment-submitted">
<?php
print t('Submitted by !username on !datetime',
array('!username' => $author, '!datetime' => '<time datetime="' . $datetime . '">' . $created . '</time>'));
?>
</footer>
<div<?php print $content_attributes; ?>>
<?php
hide($content['links']);
print render($content);
?>
</div>
<?php if ($signature): ?>
<div class="user-signature"><?php print $signature ?></div>
<?php endif; ?>
<?php if (!empty($content['links'])): ?>
<nav class="links comment-links clearfix"><?php print render($content['links']); ?></nav>
<?php endif; ?>
</article>