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.
82 lines
4.3 KiB
82 lines
4.3 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="//snippets[@id='snippet_content']" position="inside">
|
|
<t t-snippet="theme_watchhut.gallery"
|
|
t-thumbnail="/theme_watchhut/static/src/images/snippets/gallery.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 is-visible"/>
|
|
|
|
</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 is-visible"/>
|
|
</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>
|
|
|