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.
 
 
 
 
 

101 lines
5.5 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!--Template snippet Gallery banner added to website snippet-->
<template id="gallery_banner" inherit_id="website.snippets"
name="Gallery banner">
<!-- The template adds a gallery banner snippet to the website. It inserts the -->
<!-- gallery snippet into the panel body section of the website's structure, allowing -->
<!-- users to showcase images in a visually appealing manner. The thumbnail specified-->
<!-- in the template is used as a representative image for the gallery.-->
<xpath expr="//div[@id='snippet_structure']/div[hasclass('o_panel_body')]"
position="inside">
<t t-snippet="theme_watchhut.gallery"
t-thumbnail="/theme_watchhut/static/src/images/snippets/gallery.jpg"/>
</xpath>
<!-- Gallery Heading banner-->
<!-- The template adds a gallery heading banner snippet to the website's snippets section. -->
<!-- It inserts a custom gallery heading component, along with its thumbnail image, into-->
<!-- the designated position within the snippet structure.-->
<xpath expr="//div[@id='snippet_structure']/div[hasclass('o_panel_body')]"
position="inside">
<t t-snippet="theme_watchhut.gallery_heading"
t-thumbnail="/theme_watchhut/static/src/images/snippets/heading.jpg"/>
</xpath>
<!-- Shop Button banner-->
<!-- The template represents a shop button banner component for the -->
<!-- website. It includes a shop button that is visually highlighted-->
<!-- and encourages users to explore and visit the shop section of the website.-->
<xpath expr="//div[@id='snippet_structure']/div[hasclass('o_panel_body')]"
position="inside">
<t t-snippet="theme_watchhut.shop_button"
t-thumbnail="/theme_watchhut/static/src/images/snippets/shop_button.jpg"/>
</xpath>
</template>
<!--Template for snippet Gallery -->
<template id="gallery" name="Gallery">
<!-- The template defines a gallery section for displaying multiple-->
<!-- images. It creates a responsive grid layout with two columns on -->
<!-- larger screens and a single column on smaller screens. The gallery-->
<!-- section allows users to showcase images using clickable thumbnails -->
<!-- that open in a lightbox view.-->
<!-- Section Gallery starts here -->
<section class="gallery images" id="gallery">
<div class="container-fluid">
<div class="gallery_content">
<div class="row">
<div class="col-lg-6 col-sm-12 col-12">
<div class="col-12">
<a href="">
<div class="wrapper">
<img src="/theme_watchhut/static/src/images/gallery/1.jpg"
alt=""
class="inline-photo show-on-scroll"/>
</div>
</a>
</div>
<div class="col-12">
<div class="wrapper">
<img src="/theme_watchhut/static/src/images/gallery/2.jpg"
alt=""
class="inline-photo show-on-scroll"/>
</div>
</div>
</div>
<div class="col-lg-6 col-sm-12 col-12">
<div class="col-12">
<div class="wrapper">
<img src="/theme_watchhut/static/src/images/gallery/ww.jpg"
alt=""
class="inline-photo show-on-scroll"/>
</div>
</div>
<div class="col-12">
<div class="wrapper">
<img src="/theme_watchhut/static/src/images/gallery/4.jpg"
alt=""
class="inline-photo show-on-scroll"/>
</div>
</div>
<div class="col-12">
<div class="wrapper">
<img src="/theme_watchhut/static/src/images/gallery/5.jpg"
alt=""
class="inline-photo show-on-scroll"/>
</div>
</div>
</div>
<div class="col-12">
<div class="wrapper">
<img src="/theme_watchhut/static/src/images/gallery/6.jpg"
alt=""
class="inline-photo show-on-scroll"/>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section Gallery ends here -->
</template>
</odoo>