123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
- ?>
- <div class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
- <div class="attribution">
- <?php print $picture; ?>
- <div class="submitted">
- <p class="commenter-name">
- <?php print $author; ?>
- </p>
- <p class="comment-time">
- <?php print $created; ?>
- </p>
- <p class="comment-permalink">
- <?php print $permalink; ?>
- </p>
- </div>
- </div>
- <div class="comment-text">
- <div class="comment-arrow"></div>
- <?php if ($new): ?>
- <span class="new"><?php print $new; ?></span>
- <?php endif; ?>
- <?php print render($title_prefix); ?>
- <h3<?php print $title_attributes; ?>><?php print $title; ?></h3>
- <?php print render($title_suffix); ?>
- <div class="content"<?php print $content_attributes; ?>>
- <?php
- // We hide the comments and links now so that we can render them later.
- hide($content['links']);
- print render($content);
- ?>
- <?php if ($signature): ?>
- <div class="user-signature clearfix">
- <?php print $signature; ?>
- </div>
- <?php endif; ?>
- </div> <!-- /.content -->
- <?php print render($content['links']); ?>
- </div> <!-- /.comment-text -->
- </div>
|