blob: 6af899bc179537c30fbea4e85d93caf7363441d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
// $Id$
?>
<div id="node-<?php print $node->nid; ?>" class="<?php print $classes ?>">
<?php print $picture ?>
<?php if ($page == 0): ?>
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
<?php endif; ?>
<?php if ($submitted): ?>
<span class="submitted"><?php print $submitted; ?></span>
<?php endif; ?>
<div class="content clearfix">
<?php hide($content['links']); hide($content['comments']); render($content); ?>
</div>
<div class="clearfix">
<div class="meta">
<?php if (!empty($content['links']['terms'])): ?>
<div class="terms"><?php render($content['links']['terms']) ?></div>
<?php endif;?>
</div>
<?php if (!empty($content['links'])): ?>
<div class="links"><?php render($content['links']) ?></div>
<?php endif; ?>
<?php render($content['comments']); ?>
</div>
</div>
|