-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnode.tpl.php
43 lines (33 loc) · 1.21 KB
/
node.tpl.php
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
35
36
37
38
39
40
41
42
43
<?php
// $Id: node.tpl.php,v 1.1.2.2 2009/11/11 05:26:25 sociotech Exp $
?>
<div id="node-<?php print $node->nid; ?>" class="node <?php print $node_classes; ?>">
<div class="inner">
<?php print $picture ?>
<?php if ($page == 0): ?>
<h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
<?php endif; ?>
<?php if ($node_top && !$teaser): ?>
<div id="node-top" class="node-top row nested">
<div id="node-top-inner" class="node-top-inner inner">
<?php print $node_top; ?>
</div><!-- /node-top-inner -->
</div><!-- /node-top -->
<?php endif; ?>
<div class="content clearfix">
<?php print $content ?>
</div>
<?php if ($terms): ?>
<!--<div class="terms">-->
<?php // print $terms; ?>
<!--</div>-->
<?php endif;?>
</div><!-- /inner -->
<?php if ($node_bottom && !$teaser): ?>
<div id="node-bottom" class="node-bottom row nested">
<div id="node-bottom-inner" class="node-bottom-inner inner">
<?php print $node_bottom; ?>
</div><!-- /node-bottom-inner -->
</div><!-- /node-bottom -->
<?php endif; ?>
</div><!-- /node-<?php print $node->nid; ?> -->