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.
34 lines
1.5 KiB
34 lines
1.5 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<template id="gallery_heading_snippet" inherit_id="website.snippets"
|
|
name="Gallery heading">
|
|
<!-- 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="//snippets[@id='snippet_content']" position="inside">
|
|
<t t-snippet="theme_watchhut.gallery_heading"
|
|
t-thumbnail="/theme_watchhut/static/src/images/snippets/heading.jpg"/>
|
|
</xpath>
|
|
</template>
|
|
|
|
<!--Template for snippet gallery heading-->
|
|
<template id="gallery_heading" name="Gallery Heading">
|
|
<!-- The template represents a gallery heading component for the website.-->
|
|
<!-- It displays a banner section with a heading showcasing the "Men Watch Collection" -->
|
|
<!-- in a visually appealing manner.-->
|
|
<!-- Section banner starts here -->
|
|
<section class="banner">
|
|
<div class="container">
|
|
<div class="row">
|
|
<h3 class="banner_head">
|
|
Men Watch
|
|
<br/>
|
|
Collection
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- Section Gallery ends here -->
|
|
</template>
|
|
</odoo>
|
|
|