Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. <?php
  2. // $Id: node-product.tpl.php,v 1.1 2010/09/11 20:29:12 atelier Exp $
  3. ?>
  4.  
  5. <div id="node-<?php print $node->nid; ?>" class="node clear-block <?php print $node_classes; ?>">
  6. <div class="inner">
  7. <?php if ($page == 0): ?>
  8. <h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
  9. <?php endif; ?>
  10.  
  11. <?php if ($submitted): ?>
  12. <div class="meta">
  13. <span class="submitted"><?php print $submitted ?></span>
  14. </div>
  15. <?php endif; ?>
  16.  
  17. <?php if ($node_top && !$teaser): ?>
  18. <div id="node-top" class="node-top row nested">
  19. <div id="node-top-inner" class="node-top-inner inner">
  20. <?php print $node_top; ?>
  21. </div><!-- /node-top-inner -->
  22. </div><!-- /node-top -->
  23. <?php endif; ?>
  24.  
  25. <div id="product-group" class="product-group">
  26. <div class="images">
  27. <?php print $fusion_uc_image; ?>
  28. </div><!-- /images -->
  29.  
  30. <div class="content clearfix">
  31. <div id="content-body">
  32. <?php print $fusion_uc_body; ?>
  33. </div>
  34.  
  35. <div id="product-details" class="clear">
  36. <div id="price-group">
  37. <?php print $fusion_uc_display_price; ?>
  38. <?php print $fusion_uc_add_to_cart; ?>
  39. </div>
  40.  
  41. <div id="field-group">
  42. <?php print $fusion_uc_weight; ?>
  43. <?php print $fusion_uc_dimensions; ?>
  44. <?php print $fusion_uc_model; ?>
  45. <?php print $fusion_uc_list_price; ?>
  46. <?php print $fusion_uc_sell_price; ?>
  47. <?php print $fusion_uc_cost; ?>
  48. </div>
  49. </div><!-- /product-details -->
  50.  
  51. <?php if ($fusion_uc_additional && !$teaser): ?>
  52. <div id="product-additional" class="product-additional">
  53. <?php print $fusion_uc_additional; ?>
  54. </div>
  55. <?php endif; ?>
  56.  
  57. <?php if ($terms): ?>
  58. <div class="terms">
  59. <?php print $terms; ?>
  60. </div>
  61. <?php endif;?>
  62.  
  63. <?php if ($links && !$teaser): ?>
  64. <div class="links clear">
  65. <?php print $links; ?>
  66. </div>
  67. <?php endif; ?>
  68. </div><!-- /content -->
  69. </div><!-- /product-group -->
  70. </div><!-- /inner -->
  71.  
  72. <?php if ($node_bottom && !$teaser): ?>
  73. <div id="node-bottom" class="node-bottom row nested">
  74. <div id="node-bottom-inner" class="node-bottom-inner inner">
  75. <?php print $node_bottom; ?>
  76. </div><!-- /node-bottom-inner -->
  77. </div><!-- /node-bottom -->
  78. <?php endif; ?>
  79. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement