Created
July 9, 2015 14:58
-
-
Save adamjakab/b70f59d1bf75852c8e80 to your computer and use it in GitHub Desktop.
template product
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Product Main Page | |
*/ | |
/** @var Array $TV - TemplateVariables - All defined variables in this template file */ | |
$TV = get_defined_vars(); | |
/* | |
<div id="node-<?php print $TV["nid"]; ?>" class="<?php print $TV["classes"]; ?> product-full clearfix"<?php print $TV["attributes"]; ?>> | |
<div class="row"<?php print $TV["content_attributes"]; ?>> | |
<div class="col-md-8 spazio-30"> | |
<?php print render($TV["content"]["group_maindisplay"]); ?> | |
</div> | |
<div class="col-md-4 spazio-30"> | |
<div class="sidebar"> | |
<div class="product-header"> | |
<?php print render($TV["content"]["group_rightdisplay"]["group_product_info"]); ?> | |
<?php print render($TV["producer_data"]); ?> | |
</div> | |
<div class="product-info"> | |
<?php print render($TV["content"]["group_rightdisplay"]); ?> | |
<?php print render($TV["static"]["shipping_info"]); ?> | |
</div> | |
</div> | |
</div> | |
<?php print render($TV["content"]); ?> | |
</div> | |
</div> | |
*/ | |
?> | |
<div id="node-<?php print $TV["nid"]; ?>" class="<?php print $TV["classes"]; ?> product-full clearfix"<?php print $TV["attributes"]; ?>> | |
<div class="row"<?php print $TV["content_attributes"]; ?>> | |
<div class="col-md-8 spazio-30"> | |
<?php print render($TV["content"]["group_maindisplay"]); ?> | |
</div> | |
<div class="col-md-4 spazio-30"> | |
<div class="sidebar"> | |
<div class="product-header"> | |
<?php print render($TV["content"]["group_rightdisplay"]["group_producthead"]); ?> | |
<?php print render($TV["producer_data"]); ?> | |
</div> | |
<div class="product-info"> | |
<?php print render($TV["content"]["group_rightdisplay"]); ?> | |
<?php print render($TV["static"]["shipping_info"]); ?> | |
</div> | |
</div> | |
</div> | |
<?php print render($TV["content"]); ?> | |
</div> | |
</div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment