forked from osu-eesc/extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode-product.tpl.php
79 lines (68 loc) · 2.45 KB
/
node-product.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
// $Id: node-product.tpl.php,v 1.1.2.3 2009/11/11 05:26:25 sociotech Exp $
?>
<div id="node-<?php print $node->nid; ?>" class="node clear-block <?php print $node_classes; ?>">
<div class="inner">
<?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 ($submitted): ?>
<div class="meta">
<span class="submitted"><?php print $submitted ?></span>
</div>
<?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 id="product-group" class="product-group">
<div class="images">
<?php print $fusion_uc_image; ?>
</div><!-- /images -->
<div class="content">
<div id="content-body">
<?php print $fusion_uc_body; ?>
</div>
<div id="product-details" class="clear">
<div id="field-group">
<?php print $fusion_uc_weight; ?>
<?php print $fusion_uc_dimensions; ?>
<?php print $fusion_uc_model; ?>
<?php print $fusion_uc_list_price; ?>
<?php print $fusion_uc_sell_price; ?>
<?php print $fusion_uc_cost; ?>
</div>
<div id="price-group">
<?php print $fusion_uc_display_price; ?>
<?php print $fusion_uc_add_to_cart; ?>
</div>
</div><!-- /product-details -->
<?php if ($fusion_uc_additional && !$teaser): ?>
<div id="product-additional" class="product-additional">
<?php print $fusion_uc_additional; ?>
</div>
<?php endif; ?>
<?php if ($terms): ?>
<div class="terms">
<?php print $terms; ?>
</div>
<?php endif;?>
<?php if ($links && !$teaser): ?>
<div class="links clear">
<?php print $links; ?>
</div>
<?php endif; ?>
</div><!-- /content -->
</div><!-- /product-group -->
</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>