123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?php
- ?>
- <div id="<?php print $id; ?>" class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
- <?php print $user_picture; ?>
- <?php if ($print_title): ?>
- <h2<?php print $title_attributes; ?>>
- <?php if ($anchor_target): ?>
- <span class="target" id="<?php print $anchor_target; ?>"></span>
- <?php endif; ?>
- <?php if ($wf_stamp): ?>
- <span class="date">
- <?php print format_date($wf_stamp, 'custom', "d F Y"); ?>
- </span>
- <?php endif; ?>
- <?php print $title; ?>
- </h2>
- <?php endif; ?>
- <div class="content"<?php print $content_attributes; ?>>
- <?php
- // We hide the comments and links now so that we can render them later.
- hide($content['comments']);
- //hide($content['links']);
- print render($content);
- ?>
- </div>
- <?php //print render($content['links']); ?>
- </div>
|