You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

60 lines
2.7 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<template id="arrival" inherit_id="website.snippets" name="Arrival Snippet">
<xpath expr="//div[@id='snippet_structure']/div[hasclass('o_panel_body')]"
position="inside">
<t t-snippet="cts_theme_perfume.new_arrivals_snippet"
t-thumbnail="/cts_theme_perfume/static/src/img/snippets/new-arrivals-block.jpg"/>
</xpath>
</template>
<template id="new_arrivals_snippet" name="New Arrivals Snippet">
<section class="arrivals">
</section>
</template>
<template id="new_arrivals" name="New Arrivals">
<section class="new-product-area section-padding30">
<div class="container">
<!-- Section tittle -->
<div class="row">
<div class="col-xl-12">
<div class="section-tittle mb-70">
<h2>New Arrivals</h2>
</div>
</div>
</div>
<section>
<div class="row">
<t t-foreach="product_ids" t-as="product_id">
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-6">
<div class="single-new-pro mb-30 text-center">
<a t-attf-href="/shop/product/#{slug(product_id)}">
<div class="product-img">
<img t-attf-src="/web/image?model=product.template&amp;field=image_1920&amp;id=#{product_id.id}"
class="img img-fluid"/>
</div>
<div class="popular-caption">
<h3>
<div t-if="product_id"
t-esc="product_id.display_name"/>
</h3>
<span>
<span t-if="product_id"
t-esc="product_id.list_price"
t-options="{'widget':'monetary', 'display_currency':website.currency_id}"/>
</span>
</div>
</a>
</div>
</div>
</t>
</div>
</section>
</div>
</section>
</template>
</odoo>