Skip to content

Instantly share code, notes, and snippets.

@Tim-Machine
Created November 6, 2013 20:45
Show Gist options
  • Select an option

  • Save Tim-Machine/7343770 to your computer and use it in GitHub Desktop.

Select an option

Save Tim-Machine/7343770 to your computer and use it in GitHub Desktop.
<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>&#8227;</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