Created
November 6, 2013 20:45
-
-
Save Tim-Machine/7343770 to your computer and use it in GitHub Desktop.
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
| <div class="row two-right <?php echo $color; ?>"> | |
| <a class="block-2" href="<?php echo $link; ?>"> | |
| <div > | |
| <h1><?php echo $heading; ?></h1> | |
| <h4><?php echo $subheading; ?> <span>‣</span></h4> | |
| </div> | |
| </a> | |
| <div class="block-1"> | |
| <?php foreach($Products as $product): ?> | |
| <a href="<?php echo $product->item_url; ?>"> | |
| <div class="product"> | |
| <div class="product-image"> | |
| <img class="prodImage" src="<?php echo $product->image; ?>"> | |
| </div> | |
| <h6><?php echo $product->title; ?></h6> | |
| <p class="price">$<?php echo $product->price; ?></p> | |
| <div class="colors"> | |
| <?php if($product['swatches']): ?> | |
| <?php foreach($product['swatches'] as $swatch): ?> | |
| <?php if($swatch['swch_image']): ?> | |
| <a href="<?php echo $swatch['url']; ?>"><img src="<?php echo $swatch['swch_image']; ?>" data-altImage="<?php echo $swatch['main_img']; ?>" > </a> | |
| <?php endif; ?> | |
| <?php endforeach; ?> | |
| <?php endif; ?> | |
| </div> | |
| </div> | |
| </a> | |
| <?php endforeach; ?> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment