{{#Items}} <!--Section tag for iterating through the list of items-->
<!-- Single product Ad Template Layout. Position of the Ad can be configured by specifying pull-left or pull-right class below-->
<div class="aalb-pa-ad-unit pull-left" id="{{ID}}">
   <div class="aalb-pa-product-container">
          {{#Item}} <!-- Section tag for beginning of information on one item -->
            {{#aalb}} <!-- Section tag for picking up information on attributes for the item -->
                <div class="aalb-pa-product-image">
                  <div class="aalb-pa-product-image-wrapper">
                    <a class="aalb-pa-product-image-link" href="{{DetailPageURL}}" title="{{Title}}" target="_blank" rel="nofollow"> <!--Individual attributes are provided as variable tags as {{[[attribute]]}}. Check documentation for list of supported variable tags.-->
                      <img class="aalb-pa-product-image-source" src="{{MediumImageURL}}" srcset="{{LargeImageURL}}" alt="{{Title}}" />
                        {{#SavingPercent}} <!-- The section tag ensures that percentage savings is displayed only if it is available -->
                          <span class="aalb-pa-percent-off">
                            -{{SavingPercent}}%
                          </span>
                        {{/SavingPercent}}
                    </a>
                  </div>
                </div>
                <div class="aalb-pa-product-details">
                  <div class="aalb-pa-product-title">
                    <a href="{{DetailPageURL}}" title="{{Title}}" target="_blank" rel="nofollow">
                      {{Title}}
                    </a>
                  </div>
                  <div class="aalb-pa-product-offer-price">
                    <!-- The section tag for different marketplaces ensures localization of static text.  -->
                    {{PriceLabel}}: <span class="aalb-pa-product-offer-price-value">{{CurrentPrice}}</span>
                  </div>
                  {{#StrikePrice}} <!-- The section tag ensures that strike price is displayed only if it is available -->
                    <div class="aalb-pa-product-list-price">
                      <!-- The section tag for different marketplaces ensures localization of static text.  -->
                      {{StrikePriceLabel}}: <span class="aalb-pa-product-list-price-value">{{StrikePrice}}</span>
                    </div>
                  {{/StrikePrice}}
                  {{#Prime}} <!-- The section tag ensures that prime icon is displayed only if it is available -->
                    <div class="aalb-pa-product-prime-icon">
                        <i class="icon-prime-all"></i>
                    </div>
                  {{/Prime}}
                </div>
            {{/aalb}}
          {{/Item}}
      </div>
   </div>
{{/Items}}


