1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- ?>
- <div class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
- <?php print $picture ?>
- <?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="submitted">
- <?php print $permalink; ?>
- <?php print $submitted; ?>
- </div>
- <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>
- <?php print render($content['links']) ?>
- </div>
|