Advertisement
toorr2p

Untitled

Dec 10th, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.43 KB | None | 0 0
  1.     <xsl:template match="search_page" mode="new">
  2.         <li>
  3.             <div class="search_page" style="height: 300px;">
  4.                 <div class="i-head">
  5.                     <a href="{url}" style="text-decoration:none;" title="{search_page/name}">
  6.                         <img src="{image_small}" width="179" height="179" border="0" alt="{search_page/name}" />
  7.                     </a>
  8.                 </div>
  9.                 <div class="i-body">
  10.                 <h2><a href="{url}"><xsl:value-of select="shop_item/name"/></a></h2>
  11.                 </div>
  12.                 <div class="i-foot">
  13.                 <div class="i-price"><xsl:value-of select="format-number(shop_item/price, '### ##0', 'my')" />,<span class="f18">00 P</span></div>
  14.                     <div class="i-buy">
  15.                         <input type="hidden" size="3" value="1" id="count_{shop_item/@id}"/>
  16.                         <a href="/shop/cart/?action=add&amp;search_page_id={shop_item/@id}" class="bttn button-bg" title="Добавить в корзину"
  17.                             onclick="return AddIntoCart('/shop/', {shop_item/@id}, document.getElementById('count_{shop_item/@id}').value)">
  18.                             <img src="/images/none.gif" class="basket" alt="" />
  19.                         <span>Купить</span><span onclick="countCartAdd({shop_item/@id});" style="position: absolute; width: 95px; height: 20px; margin: -6px 0 0 -85px; padding: 5px 0 0 10px; z-index: 999;"></span>
  20.                         </a>
  21.                 <div style="margin-top: 10px;">Товара в корзине <b><span id="countCart_{shop_item/@id}"><!-- <xsl:value-of select="@countCart" /> -->0</span></b> шт.</div>
  22.                     </div>
  23.                 </div>
  24.             </div>
  25.         </li>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement