snippets.xml 89 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <!-- Home Slider snippet -->
  5. <template id="s_kingfisher_pro_home_slider" name="Slider del Inicio">
  6. <div id="myCarousel" class="carousel slide theme-home-slider s_kingfisher_pro_home_slider" data-interval="10000" data-ride="carousel">
  7. <!-- Indicators -->
  8. <ol class="carousel-indicators">
  9. <li data-slide-to="0" data-target="#myCarousel" class="active" />
  10. <li data-slide-to="1" data-target="#myCarousel"/>
  11. </ol>
  12. <!-- Wrapper for slides -->
  13. <div class="carousel-inner">
  14. <div class="item item1 active">
  15. <div class="container">
  16. <div class="row content">
  17. <blockquote class="col-md-6 col-sm-6 col-xs-12 col-xxs-6">
  18. <p>Nuevas Colecciones</p>
  19. <h2>Trajes de Hombres</h2>
  20. <h5>Descuentos <span>20%</span></h5>
  21. <div class="btn-box">
  22. <a href="#">Comprar Ahora <i class="fa fa-angle-right"/></a>
  23. </div>
  24. </blockquote>
  25. <div class="col-md-6 col-sm-6 col-xs-6">
  26. <img src="/kingfisher_pro/static/src/img/men-blazer.png"/>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. <div class="item item2">
  32. <div class="container">
  33. <div class="row content">
  34. <blockquote class="pull-right col-md-5 col-sm-6 col-xs-12 col-xxs-6">
  35. <p>Prendas de Vestir</p>
  36. <h2>Moda Femenina</h2>
  37. <h5>Descuento <span>20%</span></h5>
  38. <div class="btn-box">
  39. <a href="#">Comprar Ahora <i class="fa fa-angle-right"/></a>
  40. </div>
  41. </blockquote>
  42. <div class="col-md-7 col-sm-6 col-xs-6 col-xs-12 col-xxs-6">
  43. <img src="/kingfisher_pro/static/src/img/women-top.png"/>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. <!-- Controls -->
  50. <a class="left carousel-control" data-target="#myCarousel" data-slide="prev" role="button">
  51. <span aria-hidden="true" class="previous-icon">
  52. <img src="/kingfisher_pro/static/src/img/prev-slide.png"/>
  53. </span>
  54. <span class="sr-only">Previo</span>
  55. </a>
  56. <a class="right carousel-control" data-slide="next" data-target="#myCarousel" role="button">
  57. <span aria-hidden="true" class="next-icon">
  58. <img src="/kingfisher_pro/static/src/img/next-slide.png"/>
  59. </span>
  60. <span class="sr-only">Próximo</span>
  61. </a>
  62. </div>
  63. </template>
  64. <!-- Promo Snippet -->
  65. <template id="s_kingfisher_pro_promo_snippet" name="Promociones">
  66. <section class="ads-section s_kingfisher_pro_promo_snippet">
  67. <div class="container">
  68. <div class="row">
  69. <div class="col-lg-3 col-md-4 col-sm-4 col-xs-12 text-center">
  70. <section class="adsb-inner adsb-inner1 small-banners">
  71. <div class="inner-content">
  72. <h5>MEN'S SHOES</h5>
  73. <section class="image-section">
  74. <img alt="Shoes" class="img-responsive" src="/kingfisher_pro/static/src/img/snippet/shoes.png" title="Shoes"/>
  75. </section>
  76. <div class="btn-box">
  77. <button>SHOP NOW
  78. <i class="fa fa-angle-right"/></button>
  79. </div>
  80. </div>
  81. <a href="#">
  82. <span class="dark-div">
  83. <span class="inner-div"/>
  84. </span>
  85. </a>
  86. </section>
  87. <section class="adsb-inner adsb-inner4 small-banners">
  88. <div class="inner-content">
  89. <h5>MEN'S WATCH</h5>
  90. <section class="image-section">
  91. <img alt="Watch" class="img-responsive" src="/kingfisher_pro/static/src/img/snippet/watch.png" title="Watch"/>
  92. </section>
  93. <div class="btn-box">
  94. <button>SHOP NOW
  95. <i class="fa fa-angle-right"/></button>
  96. </div>
  97. </div>
  98. <a href="#">
  99. <span class="dark-div">
  100. <span class="inner-div"/>
  101. </span>
  102. </a>
  103. </section>
  104. </div>
  105. <div class="col-lg-6 col-md-4 col-sm-4 col-xs-12">
  106. <section class="adsb-inner adsb-inner2 middle-banner" style="background-image:url(/kingfisher_pro/static/src/img/snippet/middle-box-bg.png);">
  107. <div class="middle-content">
  108. <a href="#">
  109. <span class="line1">BIGGEST</span><br/>
  110. <span class="line2">SALE</span><br/>
  111. <span class="line3">50%</span>
  112. </a>
  113. </div>
  114. </section>
  115. </div>
  116. <div class="col-lg-3 col-md-4 col-sm-4 col-xs-12">
  117. <section class="adsb-inner adsb-inner3 small-banners">
  118. <div class="inner-content">
  119. <h5>WOMEN'S GLASSES</h5>
  120. <section class="image-section">
  121. <img alt="Spacs" class="img-responsive" src="/kingfisher_pro/static/src/img/snippet/spacs.png" title="Spacs"/>
  122. </section>
  123. <div class="btn-box">
  124. <button>SHOP NOW <i class="fa fa-angle-right"/></button>
  125. </div>
  126. </div>
  127. <a href="#">
  128. <span class="dark-div">
  129. <span class="inner-div"/>
  130. </span>
  131. </a>
  132. </section>
  133. <section class="adsb-inner adsb-inner3 small-banners">
  134. <div class="inner-content">
  135. <h5>WOMEN'S JEWELLERY</h5>
  136. <section class="image-section">
  137. <img alt="Jewellary" class="img-responsive" src="/kingfisher_pro/static/src/img/snippet/jewellary.png" title="Jewellary"/>
  138. </section>
  139. <div class="btn-box">
  140. <button>SHOP NOW <i class="fa fa-angle-right"/></button>
  141. </div>
  142. </div>
  143. <a href="#">
  144. <span class="dark-div">
  145. <span class="inner-div"/>
  146. </span>
  147. </a>
  148. </section>
  149. </div>
  150. </div>
  151. </div>
  152. </section>
  153. </template>
  154. <!-- Service Snippet -->
  155. <template id="s_kingfisher_pro_service_snippet" name="Servicios">
  156. <section class="services text-center s_kingfisher_pro_service_snippet">
  157. <div class="container">
  158. <div class="row">
  159. <div class="col-sm-4">
  160. <a href="#">
  161. <i class="fa fa-shopping-cart" aria-hidden="true" alt="Free Shipping"></i>
  162. </a>
  163. <h4 class="">
  164. <b>ENVIO GRATIS</b>
  165. </h4>
  166. <h5 class="">ENTREGAMOS A SU DOMICILIO</h5>
  167. </div>
  168. <div class="col-sm-4">
  169. <a href="#">
  170. <i class="fa fa-phone" aria-hidden="true" Title="Customer Service" alt="Customer Service"></i>
  171. </a>
  172. <h4 class="">
  173. <b>ATENCION AL CLIENTE</b>
  174. </h4>
  175. <h5 class="">ATENCION PERSONALIZADA</h5>
  176. </div>
  177. <div class="col-sm-4">
  178. <a href="#">
  179. <i class="fa fa-money" aria-hidden="true" Title="Money Back" alt="Money Back"></i>
  180. </a>
  181. <h4 class="">
  182. <b>DEVOLUCION GARANTIZARA !</b>
  183. </h4>
  184. <h5 class="">SI NO ESTA CONTENTO NEGOCIAREMOS</h5>
  185. </div>
  186. </div>
  187. </div>
  188. </section>
  189. </template>
  190. <!-- Product/Category Slider Snippet -->
  191. <template id="s_kingfisher_pro_product_category_slider" name="Slider Dynamico Producto/Categoria">
  192. <section class="oe_pro_cat_slider" data-prod-cat-slider-type="" contentEditable="false">
  193. <div class="container">
  194. <div class="row oe_our_slider">
  195. <div class="col-md-12">
  196. <div class="title-block">
  197. <h4 id="snippet-title" class="section-title style1">
  198. <span>Slider Productos por Categoria</span>
  199. </h4>
  200. </div>
  201. </div>
  202. </div>
  203. </div>
  204. </section>
  205. </template>
  206. <template id="kingfisher_pro_product_category_slider_option" inherit_id="website.snippet_options" name="Modify Options">
  207. <xpath expr="//div" position="after">
  208. <div data-js="kingfisher_pro_product_category_slider"
  209. data-selector=".oe_pro_cat_slider"
  210. >
  211. <li data-pro_cat_slider="">
  212. <a class="oe_pro_cat_slider">Modificar</a>
  213. </li>
  214. </div>
  215. </xpath>
  216. </template>
  217. <template id="kingfisher_pro_pro_cat_slider_view" name="Product/Category Slider">
  218. <div class="title-block">
  219. <h4 t-if="not slider_header">
  220. <span>Tendencias</span>
  221. </h4>
  222. <h4 t-if="slider_header">
  223. <span>
  224. <t t-esc="slider_header.name"/>
  225. </span>
  226. </h4>
  227. </div>
  228. <div class="psb-inner products-slider-section">
  229. <div class="owl-carousel" t-att-id="'%s%s' % (slider_header.prod_cat_type, slider_header.id)" t-if="slider_details">
  230. <t t-foreach="slider_details" t-as="slide">
  231. <t t-if="slider_type == 'product'">
  232. <div class="cs-product slide-cs_productos">
  233. <div class="pwp-img slide-pwp_img" >
  234. <div t-if="slide and slide.product_style_tag_id" t-att-class="'%s' % slide.product_style_tag_id.color if slide and slide.product_style_tag_id else ''">
  235. <t t-esc="slide.product_style_tag_id.name"/>
  236. </div>
  237. <a t-att-href="'/shop/product/%s' % slug(slide)">
  238. <img class="front" t-att-alt="slide.name" t-att-title="slide.name" t-att-src="website.image_url(slide, 'image')"/>
  239. <img class="back" t-att-alt="slide.name" t-att-title="slide.name" t-att-src="website.image_url(slide, 'flip_image')"/>
  240. </a>
  241. </div>
  242. <div class="pink-box">
  243. <div class="view">
  244. <div class="shopping-cart">
  245. <a t-att-href="'/shop/product/%s' % slug(slide)">
  246. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA !</h5>
  247. </a>
  248. </div>
  249. </div>
  250. </div>
  251. <div class="pwp-info" >
  252. <p class="pwpi-title">
  253. <a t-att-href="'/shop/product/%s' % slug(slide)">
  254. <t t-esc="slide.name"/>
  255. </a>
  256. </p>
  257. <p class="price" >
  258. <span class="price" t-esc="str('{p:0,.0f}'.format(p=slide.lst_price).replace(',','.' ) + ' ₲s.')" >
  259. <span t-field="slide.lst_price" t-field-options='{"widget": "monetary","display_currency": "website.pricelist_id.currency_id"}' ></span>
  260. </span>
  261. </p>
  262. </div>
  263. </div>
  264. </t>
  265. <t t-if="slider_type == 'category'">
  266. <div class="cs-product slidedos-cs_product">
  267. <div class="pwp-img slidedos-pwp_img">
  268. <a t-att-href=" '/shop/category/%s' % slug(slide)">
  269. <img t-att-src="website.image_url(slide, 'image')" t-att-title="slide.name" t-att-alt="slide.name"/>
  270. </a>
  271. </div>
  272. <div id="only_categories" class="pwp-info">
  273. <p class="pwpi-title">
  274. <a t-att-href="'/shop/category/%s' % slug(slide)">
  275. <t t-esc="slide.name"/>
  276. </a>
  277. </p>
  278. </div>
  279. </div>
  280. </t>
  281. </t>
  282. </div>
  283. </div>
  284. </template>
  285. <!-- Brands slider snippet -->
  286. <template id="s_kingfisher_pro_brand_custom_slider" name="Brands">
  287. <section class="king_pro_brand_slider" data-brand-count="0" contentEditable="false">
  288. <div class="container">
  289. <div class="row our-brands">
  290. <div class="col-md-12">
  291. <div class="title-block">
  292. <h4 class="section-title style1" id="snippet-title">
  293. <span>Nuestras Marcas</span>
  294. </h4>
  295. </div>
  296. </div>
  297. </div>
  298. </div>
  299. </section>
  300. </template>
  301. <template id="kingfisher_pro_brand_custom_slider_option" inherit_id="website.snippet_options" name="Modify Options">
  302. <xpath expr="//div" position="after">
  303. <div data-js="kingfisher_pro_brand_custom_slider"
  304. data-selector=".king_pro_brand_slider"
  305. data-snippet-option-id="kingfisher_pro_brand_custom_slider">
  306. <li data-king_brand_slider="">
  307. <a class="king_pro_brand_slider">Modificar</a>
  308. </li>
  309. </div>
  310. </xpath>
  311. </template>
  312. <template id="kingfisher_pro_brand_slider_view" name="Brand Snippet">
  313. <div class="container our-brand-section">
  314. <div class="title-block">
  315. <h4 class="section-title style1" t-if="not brand_header">
  316. <span>Nuestras Marcas</span>
  317. </h4>
  318. <h4 class="section-title style1" t-if="brand_header">
  319. <span>
  320. <t t-esc="brand_header"/>
  321. </span>
  322. </h4>
  323. <!-- <hr/> -->
  324. </div>
  325. <div class="psb-inner">
  326. <t t-if="website_brands">
  327. <div id="kingfisher_pro_brand_slider" class="owl-carousel" t-if="website_brands">
  328. <t t-foreach="website_brands" t-as="brand">
  329. <a t-attf-href="/shop/brands?brand=#{ brand.id }">
  330. <div class="barnd-img text-center">
  331. <img t-att-src="website.image_url(brand, 'brand_logo')" t-att-title="brand.name" t-att-alt="brand.name"/>
  332. </div>
  333. </a>
  334. </t>
  335. </div>
  336. </t>
  337. </div>
  338. </div>
  339. </template>
  340. <!-- Single Banner snippet -->
  341. <template id="s_kingfisher_pro_single_banner_snippet" name="Simple banner sin slider">
  342. <section class="new-collection s_kingfisher_pro_single_banner_snippet" style="background-image:url(/kingfisher_pro/static/src/img/snippet/bg-banner.png)">
  343. <div class="container">
  344. <div class="row">
  345. <div class="col-md-6 col-sm-6 sol-xs-6">
  346. <div class="inner-content">
  347. <h5 class="">Colecciones Nuevas</h5>
  348. <h3>2016</h3>
  349. <p>Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse
  350. <br/>
  351. molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero
  352. <br/>
  353. eros et accumsan et iusto odio dignissim qui blandit praesent luptatum
  354. <br/>
  355. zzril delenit augue duis dolore te feugait nulla facilisi.</p>
  356. </div>
  357. <div class="btn-box">
  358. <a href="#">Comprar Ahora <i class="fa fa-angle-right"/></a>
  359. </div>
  360. </div>
  361. <div class="col-md-6 col-sm-6 sol-xs-6">
  362. <img alt="Bag" src="/kingfisher_pro/static/src/img/snippet/bag.png" title="Bag"/>
  363. </div>
  364. </div>
  365. </div>
  366. </section>
  367. </template>
  368. <!-- Multi Product slider snippet -->
  369. <template id="s_kingfisher_pro_multi_cat_custom_snippet" name="Multi Slider de Productos">
  370. <section class="oe_multi_category_slider" data-multi-cat-slider-type="" contentEditable="false">
  371. <div class="container">
  372. <div class="row our-categories">
  373. <div class="col-md-12">
  374. <div class="title-block">
  375. <h4 id="snippet-title" class="section-title style1"><span>Multi Slider de Productos</span></h4>
  376. </div>
  377. </div>
  378. </div>
  379. </div>
  380. </section>
  381. </template>
  382. <template id="kingfisher_pro_multi_cat_slider_option" inherit_id="website.snippet_options" name="Modificar Opciones">
  383. <xpath expr="//div" position="after">
  384. <div data-js="kingfisher_pro_multi_cat_custom_snippet"
  385. data-selector=".oe_multi_category_slider"
  386. data-snippet-option-id="kingfisher_pro_multi_cat_custom_snippet">
  387. <li data-multi_category_slider="">
  388. <a class="oe_multi_category_slider">Modificar</a>
  389. </li>
  390. </div>
  391. </xpath>
  392. </template>
  393. <template id="kingfisher_pro_multi_cat_slider_view" name="Multi Categorias/Productos Slider">
  394. <div class="container">
  395. <div class="title-block">
  396. <h4 class="section-title style1" t-if="not slider_header">
  397. <span>Tendencias</span>
  398. </h4>
  399. <h4 class="section-title style1" t-if="slider_header">
  400. <span>
  401. <t t-esc="slider_header.name"/>
  402. </span>
  403. </h4>
  404. <!-- <hr/> -->
  405. </div>
  406. <div class="lns-inner latest-news-section">
  407. <div class="row">
  408. <div class="lns-post">
  409. <div class="psb-inner">
  410. <ul id="multi_dynamic_slider_tabs" class="nav nav-tabs">
  411. <t t-if="slider_details.no_of_collection == '2'">
  412. <li class="active my-test">
  413. <a href="#multi-collection1" data-toggle="tab">
  414. <t t-esc='slider_details.label_collection_1'/>
  415. </a>
  416. </li>
  417. <li class="my-test">
  418. <a href="#multi-collection2" data-toggle="tab">
  419. <t t-esc='slider_details.label_collection_2'/>
  420. </a>
  421. </li>
  422. </t>
  423. <t t-if="slider_details.no_of_collection == '3'">
  424. <li class="active">
  425. <a href="#multi-collection1" data-toggle="tab">
  426. <t t-esc='slider_details.label_collection_1'/>
  427. </a>
  428. </li>
  429. <li class="">
  430. <a href="#multi-collection2" data-toggle="tab">
  431. <t t-esc='slider_details.label_collection_2'/>
  432. </a>
  433. </li>
  434. <li class="">
  435. <a href="#multi-collection3" data-toggle="tab">
  436. <t t-esc='slider_details.label_collection_3'/>
  437. </a>
  438. </li>
  439. </t>
  440. <t t-if="slider_details.no_of_collection == '4'">
  441. <li class="active">
  442. <a href="#multi-collection1" data-toggle="tab">
  443. <t t-esc='slider_details.label_collection_1'/>
  444. </a>
  445. </li>
  446. <li class="">
  447. <a href="#multi-collection2" data-toggle="tab">
  448. <t t-esc='slider_details.label_collection_2'/>
  449. </a>
  450. </li>
  451. <li class="">
  452. <a href="#multi-collection3" data-toggle="tab">
  453. <t t-esc='slider_details.label_collection_3'/>
  454. </a>
  455. </li>
  456. <li class="">
  457. <a href="#multi-collection4" data-toggle="tab">
  458. <t t-esc='slider_details.label_collection_4'/>
  459. </a>
  460. </li>
  461. </t>
  462. <t t-if="slider_details.no_of_collection == '5'">
  463. <li class="active">
  464. <a href="#multi-collection1" data-toggle="tab">
  465. <t t-esc='slider_details.label_collection_1'/>
  466. </a>
  467. </li>
  468. <li class="">
  469. <a href="#multi-collection2" data-toggle="tab">
  470. <t t-esc='slider_details.label_collection_2'/>
  471. </a>
  472. </li>
  473. <li class="">
  474. <a href="#multi-collection3" data-toggle="tab">
  475. <t t-esc='slider_details.label_collection_3'/>
  476. </a>
  477. </li>
  478. <li class="">
  479. <a href="#multi-collection4" data-toggle="tab">
  480. <t t-esc='slider_details.label_collection_4'/>
  481. </a>
  482. </li>
  483. <li class="">
  484. <a href="#multi-collection5" data-toggle="tab">
  485. <t t-esc='slider_details.label_collection_5'/>
  486. </a>
  487. </li>
  488. </t>
  489. </ul>
  490. <div class="tab-content">
  491. <t t-if="slider_details.no_of_collection == '2'">
  492. <div class="active multi_hide" id="multi-collection1">
  493. <div class="owl-carousel" t-att-id="'multi-collection1-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  494. <t t-foreach="slider_details.collection_1_ids" t-as="product">
  495. <div class="cs-product">
  496. <div class="pwp-img">
  497. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  498. <t t-esc="product.product_style_tag_id.name"/>
  499. </div>
  500. <a t-att-href="'/shop/product/%s' % slug(product)">
  501. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  502. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  503. </a>
  504. </div>
  505. <div class="pink-box">
  506. <div class="view">
  507. <div class="shopping-cart">
  508. <a t-attf-href="/shop/product/#{ slug(product) }">
  509. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  510. </a>
  511. </div>
  512. </div>
  513. </div>
  514. <div class="pwp-info">
  515. <p class="pwpi-title">
  516. <a t-attf-href="/shop/product/#{ slug(product) }">
  517. <span t-field='product.name'/>
  518. </a>
  519. </p>
  520. <p class="price">
  521. <span class="price" t-esc="str('{p:0,.0f}'.format(p=product.lst_price).replace(',','.' ) + ' ₲s.')">
  522. <span t-field="product.lst_price"
  523. t-field-options='{
  524. "widget": "monetary",
  525. "display_currency": "website.pricelist_id.currency_id"
  526. }'></span>
  527. </span>
  528. </p>
  529. </div>
  530. </div>
  531. <!-- <a t-att-href="'/shop/product/%s' % slug(prod)">
  532. <div class="brand-logo text-center">
  533. <img t-att-src="website.image_url(prod, 'image')" t-att-title="prod.name" t-att-alt="prod.name"/>
  534. </div>
  535. <div t-att-title='prod.name' class="text-center brand-title">
  536. <strong><t t-esc="prod.name"/></strong>
  537. </div>
  538. </a> -->
  539. </t>
  540. </div>
  541. </div>
  542. <div class="multi_hide" id="multi-collection2">
  543. <div class="owl-carousel" t-att-id="'multi-collection2-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  544. <t t-foreach="slider_details.collection_2_ids" t-as="product">
  545. <div class="cs-product">
  546. <div class="pwp-img">
  547. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  548. <t t-esc="product.product_style_tag_id.name"/>
  549. </div>
  550. <a t-att-href="'/shop/product/%s' % slug(product)">
  551. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  552. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  553. </a>
  554. </div>
  555. <div class="pink-box">
  556. <div class="view">
  557. <div class="shopping-cart">
  558. <a t-attf-href="/shop/product/#{ slug(product) }">
  559. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  560. </a>
  561. </div>
  562. </div>
  563. </div>
  564. <div class="pwp-info">
  565. <p class="pwpi-title">
  566. <a t-attf-href="/shop/product/#{ slug(product) }">
  567. <span t-field='product.name'/>
  568. </a>
  569. </p>
  570. <p class="price" t-esc="str('{p:0,.0f}'.format(p=product.lst_price).replace(',','.' ) + ' ₲s.')">
  571. <span class="price">
  572. <span t-field="product.lst_price"
  573. t-field-options='{
  574. "widget": "monetary",
  575. "display_currency": "website.pricelist_id.currency_id"
  576. }'></span>
  577. </span>
  578. </p>
  579. </div>
  580. </div>
  581. </t>
  582. </div>
  583. </div>
  584. </t>
  585. <t t-if="slider_details.no_of_collection == '3'">
  586. <div class="active multi_hide" id="multi-collection1">
  587. <div class="owl-carousel" t-att-id="'multi-collection1-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  588. <t t-foreach="slider_details.collection_1_ids" t-as="product">
  589. <div class="cs-product">
  590. <div class="pwp-img">
  591. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  592. <t t-esc="product.product_style_tag_id.name"/>
  593. </div>
  594. <a t-att-href="'/shop/product/%s' % slug(product)">
  595. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  596. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  597. </a>
  598. </div>
  599. <div class="pink-box">
  600. <div class="view">
  601. <div class="shopping-cart">
  602. <a t-attf-href="/shop/product/#{ slug(product) }">
  603. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  604. </a>
  605. </div>
  606. </div>
  607. </div>
  608. <div class="pwp-info">
  609. <p class="pwpi-title">
  610. <a t-attf-href="/shop/product/#{ slug(product) }">
  611. <span t-field='product.name'/>
  612. </a>
  613. </p>
  614. <p class="price">
  615. <span class="price" t-esc="str('{p:0,.0f}'.format(p=product.lst_price).replace(',','.' ) + ' ₲s.')">
  616. <span t-field="product.lst_price"
  617. t-field-options='{
  618. "widget": "monetary",
  619. "display_currency": "website.pricelist_id.currency_id"
  620. }'></span>
  621. </span>
  622. </p>
  623. </div>
  624. </div>
  625. </t>
  626. </div>
  627. </div>
  628. <div class="multi_hide" id="multi-collection2">
  629. <div class="owl-carousel" t-att-id="'multi-collection2-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  630. <t t-foreach="slider_details.collection_2_ids" t-as="product">
  631. <div class="cs-product">
  632. <div class="pwp-img">
  633. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  634. <t t-esc="product.product_style_tag_id.name"/>
  635. </div>
  636. <a t-att-href="'/shop/product/%s' % slug(product)">
  637. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  638. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  639. </a>
  640. </div>
  641. <div class="pink-box">
  642. <div class="view">
  643. <div class="shopping-cart">
  644. <a t-attf-href="/shop/product/#{ slug(product) }">
  645. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  646. </a>
  647. </div>
  648. </div>
  649. </div>
  650. <div class="pwp-info">
  651. <p class="pwpi-title">
  652. <a t-attf-href="/shop/product/#{ slug(product) }">
  653. <span t-field='product.name'/>
  654. </a>
  655. </p>
  656. <p class="price">
  657. <span class="price" t-esc="str('{p:0,.0f}'.format(p=product.lst_price).replace(',','.' ) + ' ₲s.')">
  658. <span t-field="product.lst_price"
  659. t-field-options='{
  660. "widget": "monetary",
  661. "display_currency": "website.pricelist_id.currency_id"
  662. }'></span>
  663. </span>
  664. </p>
  665. </div>
  666. </div>
  667. </t>
  668. </div>
  669. </div>
  670. <div class="multi_hide" id="multi-collection3">
  671. <div class="owl-carousel" t-att-id="'multi-collection3-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  672. <t t-foreach="slider_details.collection_3_ids" t-as="product">
  673. <div class="cs-product">
  674. <div class="pwp-img">
  675. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  676. <t t-esc="product.product_style_tag_id.name"/>
  677. </div>
  678. <a t-att-href="'/shop/product/%s' % slug(product)">
  679. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  680. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  681. </a>
  682. </div>
  683. <div class="pink-box">
  684. <div class="view">
  685. <div class="shopping-cart">
  686. <a t-attf-href="/shop/product/#{ slug(product) }">
  687. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  688. </a>
  689. </div>
  690. </div>
  691. </div>
  692. <div class="pwp-info">
  693. <p class="pwpi-title">
  694. <a t-attf-href="/shop/product/#{ slug(product) }">
  695. <span t-field='product.name'/>
  696. </a>
  697. </p>
  698. <p class="price">
  699. <span class="price" t-esc="str('{p:0,.0f}'.format(p=product.lst_price).replace(',','.' ) + ' ₲s.')">
  700. <span t-field="product.lst_price"
  701. t-field-options='{
  702. "widget": "monetary",
  703. "display_currency": "website.pricelist_id.currency_id"
  704. }'></span>
  705. </span>
  706. </p>
  707. </div>
  708. </div>
  709. </t>
  710. </div>
  711. </div>
  712. </t>
  713. <t t-if="slider_details.no_of_collection == '4'">
  714. <div class="active multi_hide" id="multi-collection1">
  715. <div class="owl-carousel" t-att-id="'multi-collection1-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  716. <t t-foreach="slider_details.collection_1_ids" t-as="product">
  717. <div class="cs-product">
  718. <div class="pwp-img">
  719. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  720. <t t-esc="product.product_style_tag_id.name"/>
  721. </div>
  722. <a t-att-href="'/shop/product/%s' % slug(product)">
  723. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  724. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  725. </a>
  726. </div>
  727. <div class="pink-box">
  728. <div class="view">
  729. <div class="shopping-cart">
  730. <a t-attf-href="/shop/product/#{ slug(product) }">
  731. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  732. </a>
  733. </div>
  734. </div>
  735. </div>
  736. <div class="pwp-info">
  737. <p class="pwpi-title">
  738. <a t-attf-href="/shop/product/#{ slug(product) }">
  739. <span t-field='product.name'/>
  740. </a>
  741. </p>
  742. <p class="price">
  743. <span class="price">
  744. <span t-field="product.lst_price"
  745. t-field-options='{
  746. "widget": "monetary",
  747. "display_currency": "website.pricelist_id.currency_id"
  748. }'></span>
  749. </span>
  750. </p>
  751. </div>
  752. </div>
  753. </t>
  754. </div>
  755. </div>
  756. <div class="multi_hide" id="multi-collection2">
  757. <div class="owl-carousel" t-att-id="'multi-collection2-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  758. <t t-foreach="slider_details.collection_2_ids" t-as="product">
  759. <div class="cs-product">
  760. <div class="pwp-img">
  761. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  762. <t t-esc="product.product_style_tag_id.name"/>
  763. </div>
  764. <a t-att-href="'/shop/product/%s' % slug(product)">
  765. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  766. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  767. </a>
  768. </div>
  769. <div class="pink-box">
  770. <div class="view">
  771. <div class="shopping-cart">
  772. <a t-attf-href="/shop/product/#{ slug(product) }">
  773. <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" />
  774. </a>
  775. </div>
  776. </div>
  777. </div>
  778. <div class="pwp-info">
  779. <p class="pwpi-title">
  780. <a t-attf-href="/shop/product/#{ slug(product) }">
  781. <span t-field='product.name'/>
  782. </a>
  783. </p>
  784. <p class="price">
  785. <span class="price">
  786. <span t-field="product.lst_price"
  787. t-field-options='{
  788. "widget": "monetary",
  789. "display_currency": "website.pricelist_id.currency_id"
  790. }'></span>
  791. </span>
  792. </p>
  793. </div>
  794. </div>
  795. </t>
  796. </div>
  797. </div>
  798. <div class="multi_hide" id="multi-collection3">
  799. <div class="owl-carousel" t-att-id="'multi-collection3-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  800. <t t-foreach="slider_details.collection_3_ids" t-as="product">
  801. <div class="cs-product">
  802. <div class="pwp-img">
  803. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  804. <t t-esc="product.product_style_tag_id.name"/>
  805. </div>
  806. <a t-att-href="'/shop/product/%s' % slug(product)">
  807. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  808. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  809. </a>
  810. </div>
  811. <div class="pink-box">
  812. <div class="view">
  813. <div class="shopping-cart">
  814. <a t-attf-href="/shop/product/#{ slug(product) }">
  815. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  816. </a>
  817. </div>
  818. </div>
  819. </div>
  820. <div class="pwp-info">
  821. <p class="pwpi-title">
  822. <a t-attf-href="/shop/product/#{ slug(product) }">
  823. <span t-field='product.name'/>
  824. </a>
  825. </p>
  826. <p class="price">
  827. <span class="price">
  828. <span t-field="product.lst_price"
  829. t-field-options='{
  830. "widget": "monetary",
  831. "display_currency": "website.pricelist_id.currency_id"
  832. }'></span>
  833. </span>
  834. </p>
  835. </div>
  836. </div>
  837. </t>
  838. </div>
  839. </div>
  840. <div class="multi_hide" id="multi-collection4">
  841. <div class="owl-carousel" t-att-id="'multi-collection4-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  842. <t t-foreach="slider_details.collection_4_ids" t-as="product">
  843. <div class="cs-product">
  844. <div class="pwp-img">
  845. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  846. <t t-esc="product.product_style_tag_id.name"/>
  847. </div>
  848. <a t-att-href="'/shop/product/%s' % slug(product)">
  849. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  850. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  851. </a>
  852. </div>
  853. <div class="pink-box">
  854. <div class="view">
  855. <div class="shopping-cart">
  856. <a t-attf-href="/shop/product/#{ slug(product) }">
  857. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  858. </a>
  859. </div>
  860. </div>
  861. </div>
  862. <div class="pwp-info">
  863. <p class="pwpi-title">
  864. <a t-attf-href="/shop/product/#{ slug(product) }">
  865. <span t-field='product.name'/>
  866. </a>
  867. </p>
  868. <p class="price">
  869. <span class="price">
  870. <span t-field="product.lst_price"
  871. t-field-options='{
  872. "widget": "monetary",
  873. "display_currency": "website.pricelist_id.currency_id"
  874. }'></span>
  875. </span>
  876. </p>
  877. </div>
  878. </div>
  879. </t>
  880. </div>
  881. </div>
  882. </t>
  883. <t t-if="slider_details.no_of_collection == '5'">
  884. <div class="active multi_hide" id="multi-collection1">
  885. <div class="owl-carousel" t-att-id="'multi-collection1-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  886. <t t-foreach="slider_details.collection_1_ids" t-as="product">
  887. <div class="cs-product">
  888. <div class="pwp-img">
  889. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  890. <t t-esc="product.product_style_tag_id.name"/>
  891. </div>
  892. <a t-att-href="'/shop/product/%s' % slug(product)">
  893. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  894. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  895. </a>
  896. </div>
  897. <div class="pink-box">
  898. <div class="view">
  899. <div class="shopping-cart">
  900. <a t-attf-href="/shop/product/#{ slug(product) }">
  901. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  902. </a>
  903. </div>
  904. </div>
  905. </div>
  906. <div class="pwp-info">
  907. <p class="pwpi-title">
  908. <a t-attf-href="/shop/product/#{ slug(product) }">
  909. <span t-field='product.name'/>
  910. </a>
  911. </p>
  912. <p class="price">
  913. <span class="price">
  914. <span t-field="product.lst_price"
  915. t-field-options='{
  916. "widget": "monetary",
  917. "display_currency": "website.pricelist_id.currency_id"
  918. }'></span>
  919. </span>
  920. </p>
  921. </div>
  922. </div>
  923. </t>
  924. </div>
  925. </div>
  926. <div class="multi_hide" id="multi-collection2">
  927. <div class="owl-carousel" t-att-id="'multi-collection2-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  928. <t t-foreach="slider_details.collection_2_ids" t-as="product">
  929. <div class="cs-product">
  930. <div class="pwp-img">
  931. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  932. <t t-esc="product.product_style_tag_id.name"/>
  933. </div>
  934. <a t-att-href="'/shop/product/%s' % slug(product)">
  935. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  936. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  937. </a>
  938. </div>
  939. <div class="pink-box">
  940. <div class="view">
  941. <div class="shopping-cart">
  942. <a t-attf-href="/shop/product/#{ slug(product) }">
  943. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  944. </a>
  945. </div>
  946. </div>
  947. </div>
  948. <div class="pwp-info">
  949. <p class="pwpi-title">
  950. <a t-attf-href="/shop/product/#{ slug(product) }">
  951. <span t-field='product.name'/>
  952. </a>
  953. </p>
  954. <p class="price">
  955. <span class="price">
  956. <span t-field="product.lst_price"
  957. t-field-options='{
  958. "widget": "monetary",
  959. "display_currency": "website.pricelist_id.currency_id"
  960. }'></span>
  961. </span>
  962. </p>
  963. </div>
  964. </div>
  965. </t>
  966. </div>
  967. </div>
  968. <div class="multi_hide" id="multi-collection3">
  969. <div class="owl-carousel" t-att-id="'multi-collection3-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  970. <t t-foreach="slider_details.collection_3_ids" t-as="product">
  971. <div class="cs-product">
  972. <div class="pwp-img">
  973. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  974. <t t-esc="product.product_style_tag_id.name"/>
  975. </div>
  976. <a t-att-href="'/shop/product/%s' % slug(product)">
  977. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  978. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  979. </a>
  980. </div>
  981. <div class="pink-box">
  982. <div class="view">
  983. <div class="shopping-cart">
  984. <a t-attf-href="/shop/product/#{ slug(product) }">
  985. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  986. </a>
  987. </div>
  988. </div>
  989. </div>
  990. <div class="pwp-info">
  991. <p class="pwpi-title">
  992. <a t-attf-href="/shop/product/#{ slug(product) }">
  993. <span t-field='product.name'/>
  994. </a>
  995. </p>
  996. <p class="price">
  997. <span class="price">
  998. <span t-field="product.lst_price"
  999. t-field-options='{
  1000. "widget": "monetary",
  1001. "display_currency": "website.pricelist_id.currency_id"
  1002. }'></span>
  1003. </span>
  1004. </p>
  1005. </div>
  1006. </div>
  1007. </t>
  1008. </div>
  1009. </div>
  1010. <div class="multi_hide" id="multi-collection4">
  1011. <div class="owl-carousel" t-att-id="'multi-collection4-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  1012. <t t-foreach="slider_details.collection_4_ids" t-as="product">
  1013. <div class="cs-product">
  1014. <div class="pwp-img">
  1015. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  1016. <t t-esc="product.product_style_tag_id.name"/>
  1017. </div>
  1018. <a t-att-href="'/shop/product/%s' % slug(product)">
  1019. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  1020. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  1021. </a>
  1022. </div>
  1023. <div class="pink-box">
  1024. <div class="view">
  1025. <div class="shopping-cart">
  1026. <a t-attf-href="/shop/product/#{ slug(product) }">
  1027. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  1028. </a>
  1029. </div>
  1030. </div>
  1031. </div>
  1032. <div class="pwp-info">
  1033. <p class="pwpi-title">
  1034. <a t-attf-href="/shop/product/#{ slug(product) }">
  1035. <span t-field='product.name'/>
  1036. </a>
  1037. </p>
  1038. <p class="price">
  1039. <span class="price">
  1040. <span t-field="product.lst_price"
  1041. t-field-options='{
  1042. "widget": "monetary",
  1043. "display_currency": "website.pricelist_id.currency_id"
  1044. }'></span>
  1045. </span>
  1046. </p>
  1047. </div>
  1048. </div>
  1049. </t>
  1050. </div>
  1051. </div>
  1052. <div class="multi_hide" id="multi-collection5">
  1053. <div class="owl-carousel" t-att-id="'multi-collection5-%s-%s' %(slider_header.no_of_collection, slider_details.id)" t-if="slider_details">
  1054. <t t-foreach="slider_details.collection_5_ids" t-as="product">
  1055. <div class="cs-product">
  1056. <div class="pwp-img">
  1057. <div t-if="product and product.product_style_tag_id" t-att-class="'%s' % product.product_style_tag_id.color if product and product.product_style_tag_id else ''">
  1058. <t t-esc="product.product_style_tag_id.name"/>
  1059. </div>
  1060. <a t-att-href="'/shop/product/%s' % slug(product)">
  1061. <img class="front" t-att-alt="product.name" t-att-title="product.name" t-att-src="website.image_url(product, 'image')"/>
  1062. <img class="back" t-att-alt="product.name" t-att-src="website.image_url(product, 'flip_image')"/>
  1063. </a>
  1064. </div>
  1065. <div class="pink-box">
  1066. <div class="view">
  1067. <div class="shopping-cart">
  1068. <a t-attf-href="/shop/product/#{ slug(product) }">
  1069. <!-- <img src="/kingfisher_pro/static/src/img/cart2.png" alt="Shopping-cart" title="Shopping Cart" /> --><h5 style="color:#ffffff;">¡COMPRAR AHORA!</h5>
  1070. </a>
  1071. </div>
  1072. </div>
  1073. </div>
  1074. <div class="pwp-info">
  1075. <p class="pwpi-title">
  1076. <a t-attf-href="/shop/product/#{ slug(product) }">
  1077. <span t-field='product.name'/>
  1078. </a>
  1079. </p>
  1080. <p class="price">
  1081. <span class="price">
  1082. <span t-field="product.lst_price"
  1083. t-field-options='{
  1084. "widget": "monetary",
  1085. "display_currency": "website.pricelist_id.currency_id"
  1086. }'></span>
  1087. </span>
  1088. </p>
  1089. </div>
  1090. </div>
  1091. </t>
  1092. </div>
  1093. </div>
  1094. </t>
  1095. </div>
  1096. </div>
  1097. </div>
  1098. </div>
  1099. </div>
  1100. </div>
  1101. </template>
  1102. <!-- Blog Slider Snippet -->
  1103. <template id="s_kingfisher_pro_blog_custom_snippet" name="Blog Slider">
  1104. <section class="king_pro_blog_slider" data-blog-slider-type="" contentEditable="false">
  1105. <div class="container">
  1106. <div class="row">
  1107. <div class="col-md-12">
  1108. <div class="title-block">
  1109. <h4 id="snippet-title" class="section-title style1"><span>Slider de Publicaciones-Blog</span></h4>
  1110. </div>
  1111. </div>
  1112. </div>
  1113. </div>
  1114. </section>
  1115. </template>
  1116. <template id="kingfisher_pro_blog_slider_option" inherit_id="website.snippet_options" name="Modifar Opciones">
  1117. <xpath expr="//div" position="after">
  1118. <div data-js="kingfisher_pro_blog_custom_snippet"
  1119. data-selector=".king_pro_blog_slider"
  1120. data-snippet-option-id="kingfisher_pro_blog_custom_snippet">
  1121. <li data-king_blog_slider="">
  1122. <a class="king_pro_blog_slider">Modificar</a>
  1123. </li>
  1124. </div>
  1125. </xpath>
  1126. </template>
  1127. <template id="kingfisher_pro_blog_slider_view" name="Blog Snippet">
  1128. <div class="container">
  1129. <div class="title-block">
  1130. <h4 class="section-title style1" t-if="not slider_header">
  1131. <span>Slider de Publicaciones-Blog</span>
  1132. </h4>
  1133. <h4 class="section-title style1" t-if="slider_header">
  1134. <span>
  1135. <t t-esc="slider_header.name"/>
  1136. </span>
  1137. </h4>
  1138. </div>
  1139. <div class="lns-inner latest-news-section">
  1140. <div class="row">
  1141. <div class="container">
  1142. <div class="lns-post">
  1143. <div class="psb-inner">
  1144. <div class="owl-carousel" t-att-id="'%s-%s' % (slider_header.no_of_counts, slider_header.id)" t-if="blog_slider_details">
  1145. <t t-foreach="blog_slider_details" t-as="slide">
  1146. <div class="post-img">
  1147. <a t-attf-href="/blog/#{ slug(slide.blog_id) }/post/#{ slug(slide) }">
  1148. <img width="400" height="300" t-att-style="'background-image: url(%s); background-size: cover;' % slide.background_image if slide.background_image else 'background: black; background-size: cover;'"/>
  1149. </a>
  1150. <div class="blog-meta">
  1151. <h3>
  1152. <a t-attf-href="/blog/#{ slug(slide.blog_id) }/post/#{ slug(slide) }">
  1153. <h4 t-field="slide.name"/>
  1154. </a>
  1155. </h3>
  1156. <span class="pull-left text-left">by <t t-esc="slide.author_id.name"/></span>
  1157. <span class="time pull-right text-right"><span class='fa fa-clock-o'></span> <t t-esc="slide.create_date"/></span>
  1158. </div>
  1159. </div>
  1160. </t>
  1161. </div>
  1162. </div>
  1163. </div>
  1164. </div>
  1165. </div>
  1166. </div>
  1167. </div>
  1168. </template>
  1169. <!-- Testimonial Snippet -->
  1170. <template id="s_kingfisher_pro_testimonials_slider" name="Slider de Testimonios">
  1171. <section class="testimonials s_kingfisher_pro_testimonials_slider" style="background-image:url(/kingfisher_pro/static/src/img/snippet/testimonial-bg.png)" data-scroll-background-ratio="0.3">
  1172. <div class="container">
  1173. <div class="row">
  1174. <div class="col-md-3 col-sm-12">
  1175. <div class="pf-page-title">
  1176. <h4 class="">Testimoniales</h4>
  1177. </div>
  1178. </div>
  1179. <div class="col-md-9 col-sm-12 slider">
  1180. <div id="myQuoteCarousel" class="psb-inner carousel quotecarousel slide s_kingfisher_pro_testimonials_slider" data-interval="10000">
  1181. <div class="carousel-inner">
  1182. <div class="item text_only active">
  1183. <div class="container">
  1184. <div class="row content">
  1185. <blockquote>
  1186. <p>
  1187. Escribe aquí una cita de uno de sus clientes. Las citas son una gran manera de construir confianza en sus productos o servicios.
  1188. Este tema es muy fácil de construir y formar el punto de vista del cliente es muy intuitivo
  1189. </p>
  1190. <p class="author">Fulano de Tal</p>
  1191. <p class="designation">CEO, Empresa ABC</p>
  1192. </blockquote>
  1193. </div>
  1194. </div>
  1195. </div>
  1196. <div class="item text_only">
  1197. <div class="container">
  1198. <div class="row content">
  1199. <blockquote>
  1200. <p>
  1201. Este tema es muy fácil de construir y formar el punto
  1202. de vista del cliente es muy ofrecemos plataforma esencial
  1203. para nuestra gestión de proyectos.
  1204. Las cosas están mejor organizados y más visible con él.
  1205. </p>
  1206. <p class="author">Fulano Juan Vengano</p>
  1207. <p class="designation">CEO, Empresa ABC</p>
  1208. </blockquote>
  1209. </div>
  1210. </div>
  1211. </div>
  1212. </div>
  1213. <a class= "carousel-control left" data-target= "#myQuoteCarousel" data-slide= "prev">
  1214. <i class='fa fa-angle-left'/>
  1215. </a>
  1216. <a class= "carousel-control right" data-target= "#myQuoteCarousel" data-slide= "next">
  1217. <i class='fa fa-angle-right'/>
  1218. </a>
  1219. </div>
  1220. </div>
  1221. </div>
  1222. </div>
  1223. </section>
  1224. </template>
  1225. <template id="kingfisher_pro_extra_snippet" inherit_id="website.snippets" name="Kingfisher Pro Extra Snippet">
  1226. <xpath expr="//div[@id='snippet_structure']" position="inside">
  1227. <t t-snippet="kingfisher_pro.s_kingfisher_pro_home_slider"
  1228. t-thumbnail="/kingfisher_pro/static/src/img/icons/home-slider-icon.png"/>
  1229. <t t-snippet="kingfisher_pro.s_kingfisher_pro_promo_snippet"
  1230. t-thumbnail="/kingfisher_pro/static/src/img/icons/promo-snippet.png"/>
  1231. <t t-snippet="kingfisher_pro.s_kingfisher_pro_single_banner_snippet"
  1232. t-thumbnail="/kingfisher_pro/static/src/img/icons/banner-without-slider.png"/>
  1233. <t t-snippet="kingfisher_pro.s_kingfisher_pro_service_snippet"
  1234. t-thumbnail="/kingfisher_pro/static/src/img/icons/service.png"/>
  1235. </xpath>
  1236. <xpath expr="//div[@id='snippet_feature']" position="inside">
  1237. <t t-snippet="kingfisher_pro.s_kingfisher_pro_testimonials_slider"
  1238. t-thumbnail="/kingfisher_pro/static/src/img/icons/testimonials.png"/>
  1239. <t t-snippet="kingfisher_pro.s_kingfisher_pro_product_category_slider"
  1240. t-thumbnail="/kingfisher_pro/static/src/img/icons/product-category-slider.png"/>
  1241. <t t-snippet="kingfisher_pro.s_kingfisher_pro_brand_custom_slider"
  1242. t-thumbnail="/kingfisher_pro/static/src/img/icons/brand.png"/>
  1243. <t t-snippet="kingfisher_pro.s_kingfisher_pro_blog_custom_snippet"
  1244. t-thumbnail="/kingfisher_pro/static/src/img/icons/blog.png"/>
  1245. <t t-snippet="kingfisher_pro.s_kingfisher_pro_multi_cat_custom_snippet"
  1246. t-thumbnail="/kingfisher_pro/static/src/img/icons/tabs.png"/>
  1247. </xpath>
  1248. <xpath expr="//div[@id='snippet_effect']" position="inside">
  1249. </xpath>
  1250. </template>
  1251. </data>
  1252. </openerp>