| 1 |
<div class="node<?php print ($static) ? " static" : ""; ?>">
|
| 2 |
|
| 3 |
<?php if ($page == 0): ?>
|
| 4 |
<h2 class="node-title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
| 5 |
<?php endif; ?>
|
| 6 |
<?php print $picture ?>
|
| 7 |
|
| 8 |
<div class="content">
|
| 9 |
<?php print $content ?>
|
| 10 |
</div>
|
| 11 |
|
| 12 |
<div class="node-break"> </div>
|
| 13 |
|
| 14 |
<div class="node-footer">
|
| 15 |
<div class="info">
|
| 16 |
<?php print format_date($node->created) ?>
|
| 17 |
<?php if ($terms): ?>
|
| 18 |
<span class="terms">Filed under: <?php print $terms ?></span>
|
| 19 |
<?php endif; ?>
|
| 20 |
</div>
|
| 21 |
|
| 22 |
<?php if ($links): ?>
|
| 23 |
<div class="links"><?php print $links ?></div>
|
| 24 |
<?php endif; ?>
|
| 25 |
|
| 26 |
</div>
|
| 27 |
|
| 28 |
</div>
|