123456789101112131415161718192021222324252627282930 |
- <div<?php print $attributes; ?>>
- <?php print $user_picture; ?>
- <?php print render($title_prefix); ?>
- <?php if (!$page && $title): ?>
- <div>
- <h2<?php print $title_attributes; ?>><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
- </div>
- <?php endif; ?>
- <?php print render($title_suffix); ?>
- <?php if ($display_submitted): ?>
- <div class="submitted"><?php print $date; ?> -- <?php print $name; ?></div>
- <?php endif; ?>
-
- <div<?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>
-
- <div class="clearfix">
- <?php if (!empty($content['links'])): ?>
- <div class="links node-links clearfix"><?php print render($content['links']); ?></div>
- <?php endif; ?>
- <?php print render($content['comments']); ?>
- </div>
- </div>
|