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.
58 lines
2.7 KiB
58 lines
2.7 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<template id="offers_snippet" inherit_id="website.snippets"
|
|
name="Product Offers">
|
|
<!-- Inherit "website.snippets" to add the 'Our Team' section of the theme_shopping -->
|
|
<xpath expr="//snippets[@id='snippet_groups']" position="inside">
|
|
<t t-snippet="theme_shopping.product_offer_snippet"
|
|
t-thumbnail="/theme_shopping/static/src/images/snippet_icons/Portfolio.png"/>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="product_offer_snippet" name="Product Offers">
|
|
<!-- The above template presents a team section showcasing team members in a grid layout.
|
|
It includes member images, names, and roles. The template follows a responsive design,
|
|
utilizing container elements and CSS classes for proper alignment and styling.
|
|
It offers a visually appealing and organized representation of the team members. -->
|
|
<section class="container oe_structure offer_snippet" style="margin-bottom: 5px;">
|
|
<div class="owl-carousel oe_structure owl-carosel-hero"
|
|
id="offer_product_carousel">
|
|
<div class="st-hero_section item">
|
|
<h3 class="st-hero__headline">Explore Our New Fashion Sale
|
|
</h3>
|
|
<a href="/shop">
|
|
<button class="btn st-btn__sm">Shop Now</button>
|
|
</a>
|
|
<div class="st-hero__img ">
|
|
<img src="/theme_shopping/static/src/images/hero-img.jpg"
|
|
alt="" class="st-auto-image"/>
|
|
</div>
|
|
</div>
|
|
<div class="st-hero_section item">
|
|
<h3 class="st-hero__headline">Explore Our New Fashion Sale
|
|
</h3>
|
|
<a href="/shop">
|
|
<button class="btn st-btn__sm">Shop Now</button>
|
|
</a>
|
|
|
|
<div class="st-hero__img">
|
|
<img src="/theme_shopping/static/src/images/hero-img.jpg"
|
|
alt="" class="st-auto-image"/>
|
|
</div>
|
|
</div>
|
|
<div class="st-hero_section item">
|
|
<h3 class="st-hero__headline">Explore Our New Fashion Sale
|
|
</h3>
|
|
<a href="/shop">
|
|
<button class="btn st-btn__sm">Shop Now</button>
|
|
</a>
|
|
|
|
<div class="st-hero__img">
|
|
<img src="/theme_shopping/static/src/images/hero-img.jpg"
|
|
alt="" class="st-auto-image"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
</odoo>
|
|
|