Working on new access system...
[estigi.git] / skins / bluebreeze / node.tpl.php
blobe8f1aa3db22b8399c9a4e6474c4c28cbef1b1e28
1 <div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>" id="node-<?php print $node->nid; ?>">
2 <?php if ($page == 0): ?>
3 <h2 class="title">
4 <a href="<?php print $node_url ?>"><?php print $title ?></a>
5 </h2>
6 <?php endif; ?>
8 <?php if ($node['picture_skinned']) print $node['picture_skinned'] ?>
10 <?php if ($submitted || !empty($terms)): ?>
11 <div class="meta<?php if (!empty($terms)) : ?> with-taxonomy<?php endif; ?>">
13 <?php if ($submitted): ?>
14 <div class="submitted"><?php print t('Posted !date by !name', array('!date' => format_date($node->created, 'custom', "F jS, Y"), '!name' => theme('username', $node))); ?></div>
15 <?php endif; ?>
17 <?php if (!empty($terms)) : ?>
18 <div class="taxonomy"><?php print $terms ?></div>
19 <?php endif; ?>
21 </div>
22 <?php endif; ?>
24 <div class="content">
25 <?php print $content?>
26 </div>
28 <?php if ($links): ?>
29 <div class="links">
30 <?php print $links ?>
31 </div>
32 <?php endif; ?>
34 </div>