[IMP] theme_*: adapt s_cards_grid

task-4104964

Part-of: odoo/design-themes#919
Related: odoo/odoo#180736
Signed-off-by: Benjamin Vray (bvr) <bvr@odoo.com>
Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
This commit is contained in:
mano-odoo
2024-09-11 18:09:24 +02:00
committed by qsm-odoo
parent 11b9705708
commit 8e2ad3496f
34 changed files with 823 additions and 0 deletions
+1
View File
@@ -31,6 +31,7 @@
'views/snippets/s_references_grid.xml',
'views/snippets/s_call_to_action.xml',
'views/snippets/s_comparisons.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_freegrid.xml',
'views/snippets/s_product_list.xml',
'views/snippets/s_product_catalog.xml',
@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_cc5" remove="o_cc2" separator=" "/>
</xpath>
<!-- Main Title -->
<xpath expr="//h3" position="replace" mode="inner">
Redefining Fashion
</xpath>
<!-- Card 1 -->
<xpath expr="(//div[hasclass('card')])[1]" position="attributes">
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
</xpath>
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Timeless Elegance
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Our collection captures the essence of timeless elegance, blending classic designs with modern sophistication for every occasion.
</xpath>
<!-- Card 2 -->
<xpath expr="(//div[hasclass('card')])[2]" position="attributes">
<attribute name="class" add="o_cc3" remove="o_cc1" separator=" "/>
</xpath>
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Sustainable Craftsmanship
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
We are committed to sustainable practices, using eco-friendly materials and supporting ethical craftsmanship in every piece we create.
</xpath>
<!-- Card 3 -->
<xpath expr="(//div[hasclass('card')])[3]" position="attributes">
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
</xpath>
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Versatile Style
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Designed for the modern individual, our fashion seamlessly transitions from day to night, offering versatile pieces for any wardrobe.
</xpath>
<!-- Card 4 -->
<xpath expr="(//div[hasclass('card')])[4]" position="attributes">
<attribute name="class" add="o_cc3" remove="o_cc1" separator=" "/>
</xpath>
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Innovative Design
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Pushing the boundaries of fashion, our innovative designs merge cutting-edge trends with unparalleled comfort and quality.
</xpath>
</template>
</odoo>
+1
View File
@@ -19,6 +19,7 @@
'views/snippets/s_card_offset.xml',
'views/snippets/s_three_columns.xml',
'views/snippets/s_call_to_action.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_carousel.xml',
'views/snippets/s_title.xml',
'views/snippets/s_image_gallery.xml',
@@ -0,0 +1,61 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_cc3" remove="o_cc2" separator=" "/>
</xpath>
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Distinctive Creations: Art That Speaks
</xpath>
<!-- Card 1 -->
<xpath expr="(//div[hasclass('s_card')])[1]" position="attributes">
<attribute name="class" add="border" separator=" "/>
<attribute name="style" add="border-width: 0px !important;" separator=" "/>
</xpath>
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Unique Creative Vision
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
My art is a reflection of a distinctive vision, blending contemporary techniques with personal storytelling to create pieces that captivate and inspire.
</xpath>
<!-- Card 2 -->
<xpath expr="(//div[hasclass('s_card')])[2]" position="attributes">
<attribute name="class" add="border" separator=" "/>
<attribute name="style" add="border-width: 0px !important;" separator=" "/>
</xpath>
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Original and Handcrafted Works
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Each piece is a one-of-a-kind creation, meticulously handcrafted to convey emotion, thought, and imagination in every brushstroke or sculpted form.
</xpath>
<!-- Card 3 -->
<xpath expr="(//div[hasclass('s_card')])[3]" position="attributes">
<attribute name="class" add="border" separator=" "/>
<attribute name="style" add="border-width: 0px !important;" separator=" "/>
</xpath>
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Bold Use of Color and Texture
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
My work is known for its vibrant colors and dynamic textures, pushing the boundaries of conventional art forms to evoke a strong emotional response.
</xpath>
<!-- Card 4 -->
<xpath expr="(//div[hasclass('s_card')])[4]" position="attributes">
<attribute name="class" add="border" separator=" "/>
<attribute name="style" add="border-width: 0px !important;" separator=" "/>
</xpath>
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Personalized Art Commissions
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
I offer bespoke art commissions, collaborating closely with clients to create custom pieces that resonate deeply with their personal stories and spaces.
</xpath>
</template>
</odoo>
+1
View File
@@ -12,6 +12,7 @@
'views/images_library.xml',
'views/snippets/s_framed_intro.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_cta_box.xml',
'views/snippets/s_cover.xml',
'views/snippets/s_striped_top.xml',
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Main Title -->
<xpath expr="//h3" position="replace" mode="inner">
Unravel your next adventure
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Relax in Marbella
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Marbella is a city on the southern coast of Spain known for its luxurious lifestyle, beautiful beaches, and vibrant nightlife.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Rest in Finland
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Enjoy the peace and quiet of Finland's forests and lakes. Rest and relax in one of our best partnered resorts.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Tan in Thailand
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Known for its stunning beaches Thailand is a Southeast Asian country, enjoy its lush forests and vibrant culture.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Hike in Switzerland
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Switzerland is a mountainous country known its hiking trails. Feel the fresh air and enjoy the beautiful scenery of the Swiss Alps.
</xpath>
</template>
</odoo>
+1
View File
@@ -18,6 +18,7 @@
'views/snippets/s_text_image.xml',
'views/snippets/s_title.xml',
'views/snippets/s_company_team.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_freegrid.xml',
'views/snippets/s_call_to_action.xml',
'views/snippets/s_sidegrid.xml',
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Innovative Beauty Treatments for Radiant Results
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Premium Beauty Products
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Discover our exclusive range of high-quality beauty products, crafted with natural ingredients to enhance your skin's radiance and health.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Personalized Skincare Solutions
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Our experts provide tailored skincare consultations, recommending products and treatments designed specifically for your skin type and concerns.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Advanced Beauty Treatments
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Experience cutting-edge beauty treatments, from innovative facial therapies to advanced body treatments, designed to enhance your natural beauty.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Expert Beauty Consultations
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Our skilled beauty professionals offer personalized consultations to help you find the perfect look, from makeup tips to skincare routines.
</xpath>
</template>
</odoo>
+36
View File
@@ -735,6 +735,42 @@
</xpath>
</template>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Elevate Your Academic Journey
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Cutting-Edge Research Facilities
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Explore our state-of-the-art research facilities, equipped with the latest technology to support groundbreaking research and innovative projects.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Personalized Academic Support
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Benefit from tailored academic advising and support services, designed to guide you through your educational journey.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Advanced Learning Programs
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Engage in our cutting-edge learning programs that offer specialized courses, hands-on experiences for in-depth exploration in your field of interest.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Expert Faculty and Mentorship
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Learn from distinguished faculty members and industry experts who provide mentorship, guidance, and support to help you excel in your studies and future career.
</xpath>
</template>
<!-- ======== KEY IMAGES ======== -->
<template id="s_key_images" inherit_id="website.s_key_images" name="Be Wise s_key_images">
<xpath expr="//h2" position="replace" mode="inner">
+1
View File
@@ -16,6 +16,7 @@
'views/snippets/s_cta_box.xml',
'views/snippets/s_banner.xml',
'views/snippets/s_columns.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_cover.xml',
'views/snippets/s_card_offset.xml',
'views/snippets/s_features.xml',
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Experience the Pinnacle of Fine Dining and Innovation
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Gourmet Dining Experiences
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Savor exquisite culinary creations crafted by top chefs. Our gourmet dining experiences feature innovative dishes and premium ingredients, promising an unforgettable meal.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Personalized Culinary Consultations
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Enjoy tailored culinary advice with bespoke menus designed to suit your taste preferences and dietary needs. Our personalized consultations ensure a dining experience just for you.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Cutting-Edge Culinary Techniques
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Experience the latest in gastronomic innovation with advanced cooking techniques. Our unique flavor combinations and modern methods elevate the art of dining to new heights.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Expert Chef Workshops
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Join hands-on workshops led by renowned chefs. Learn advanced cooking skills and insider tips to refine your culinary expertise and bring new flavors to your kitchen.
</xpath>
</template>
</odoo>
+1
View File
@@ -15,6 +15,7 @@
'views/snippets/s_striped_top.xml',
'views/snippets/s_title.xml',
'views/snippets/s_three_columns.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_picture.xml',
'views/snippets/s_text_image.xml',
'views/snippets/s_product_list.xml',
@@ -0,0 +1,63 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Discover Your Next Great Read
</xpath>
<!-- Card 1 -->
<xpath expr="(//div[hasclass('s_card')])[1]" position="attributes">
<attribute name="class" add="flex-lg-row-reverse" remove="flex-lg-row" separator=" "/>
</xpath>
<xpath expr="(//div[hasclass('s_card')])[1]//img" position="attributes">
<attribute name="class" add="rounded-end" remove="rounded-start" separator=" "/>
</xpath>
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Boundless
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Dive into a gripping adventure exploring the limits of human potential and the quest for freedom. Follow a protagonist who breaks barriers and discovers new horizons in a thrilling journey.
</xpath>
<!-- Card 2 -->
<xpath expr="(//div[hasclass('s_card')])[2]" position="attributes">
<attribute name="class" add="flex-lg-row-reverse" remove="flex-lg-row" separator=" "/>
</xpath>
<xpath expr="(//div[hasclass('s_card')])[2]//img" position="attributes">
<attribute name="class" add="rounded-end" remove="rounded-start" separator=" "/>
</xpath>
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Romans
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Immerse yourself in the grandeur and intrigue of ancient Rome through richly detailed storytelling. Experience the intricate lives and societal dynamics of one of history's most fascinating civilizations.
</xpath>
<!-- Card 3 -->
<xpath expr="(//div[hasclass('s_card')])[3]" position="attributes">
<attribute name="class" add="flex-lg-row-reverse" remove="flex-lg-row" separator=" "/>
</xpath>
<xpath expr="(//div[hasclass('s_card')])[3]//img" position="attributes">
<attribute name="class" add="rounded-end" remove="rounded-start" separator=" "/>
</xpath>
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Change the Way You Think
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Transform your perspective with practical strategies and insights designed to shift your mindset and enhance your life. Discover how changing your way of thinking can lead to profound personal growth.
</xpath>
<!-- Card 4 -->
<xpath expr="(//div[hasclass('s_card')])[4]" position="attributes">
<attribute name="class" add="flex-lg-row-reverse" remove="flex-lg-row" separator=" "/>
</xpath>
<xpath expr="(//div[hasclass('s_card')])[4]//img" position="attributes">
<attribute name="class" add="rounded-end" remove="rounded-start" separator=" "/>
</xpath>
<xpath expr="(//h5)[4]" position="replace" mode="inner">
What I Didn't Post on Social Media
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Explore the untold stories and hidden truths behind social media profiles. This eye-opening book reveals the realities behind online personas and the contrast with what remains unshared.
</xpath>
</template>
</odoo>
+1
View File
@@ -16,6 +16,7 @@
'views/snippets/s_cta_box.xml',
'views/snippets/s_banner.xml',
'views/snippets/s_striped_top.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_cover.xml',
'views/snippets/s_card_offset.xml',
'views/snippets/s_company_team_detail.xml',
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Crafting Tomorrow's Architectural Icons
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Innovative Building Design
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
We create visionary designs that transform spaces into functional works of art. Our approach blends creativity with cutting-edge technology to craft buildings that stand out.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Modern Architecture Solutions
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Our modern architectural solutions are tailored to meet the needs of todays urban environments. We specialize in sleek, contemporary designs that optimize space and enhance livability.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Sustainable Design Practices
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
We incorporate sustainable practices into every project, creating eco-friendly buildings that minimize environmental impact while maintaining aesthetic appeal and functionality.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Comprehensive Project Management
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
From concept to completion, our team provides end-to-end project management services, ensuring every aspect of your building design is executed with precision and expertise.
</xpath>
</template>
</odoo>
+1
View File
@@ -37,6 +37,7 @@
'views/snippets/s_accordion_image.xml',
'views/snippets/s_key_benefits.xml',
'views/snippets/s_carousel.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_quotes_carousel.xml',
'views/snippets/s_pricelist_boxed.xml',
'views/snippets/s_image_hexagonal.xml',
+46
View File
@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="data-oe-shape-data">{'shape':'web_editor/Bold/07_001','flip':[],'showOnMobile':false}</attribute>
</xpath>
<xpath expr="//div[hasclass('container')]" position="before">
<div class="o_we_shape o_web_editor_Bold_07_001"/>
</xpath>
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Unlock a World of Possibilities
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Virtual Collaboration and Meetings
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Redefine your remote work experience with our VR headsets. Conduct meetings, collaborate in virtual environments, and connect with colleagues from around the globe in a more engaging way.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Elevate Your Gaming Experience
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Transform your gameplay with our high-performance VR headsets. Feel the action, engage with realistic environments, and take your gaming to the next level with our state-of-the-art technology.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Ultimate Comfort and Design
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Enjoy extended VR sessions with headsets designed for maximum comfort. Lightweight, adjustable, and crafted to fit perfectly, our VR headsets let you stay immersed for longer.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Explore Virtual Worlds
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Discover new dimensions with our cutting-edge VR headsets. Dive into immersive virtual worlds, explore fantastical landscapes, and experience the future of entertainment like never before.
</xpath>
</template>
</odoo>
+1
View File
@@ -21,6 +21,7 @@
'views/snippets/s_product_list.xml',
'views/snippets/s_motto.xml',
'views/snippets/s_call_to_action.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_freegrid.xml',
'views/snippets/s_company_team_shapes.xml',
'views/snippets/s_sidegrid.xml',
@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="data-oe-shape-data">{'shape':'web_editor/Floats/5','flip':[],'showOnMobile':false,'animated':'true'}</attribute>
</xpath>
<xpath expr="//div[hasclass('container')]" position="before">
<div class="o_we_shape o_web_editor_Floats_05 o_we_animated"/>
</xpath>
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Caring for Your Child's Growth and Happiness
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Nurturing Early Learning
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
We provide a safe and engaging environment where children can explore, learn, and grow. Our programs are designed to foster creativity, curiosity, and a love for learning from an early age.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Professional and Caring Staff
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Our team of trained caregivers and educators is dedicated to providing personalized attention and care. We focus on creating a warm and supportive atmosphere where every child feels valued and understood.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Fun and Educational Activities
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
We offer a range of activities that combine fun with learning, from creative arts and crafts to outdoor play and interactive storytelling, ensuring every child enjoys a balanced and enriching day.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Safe and Secure Environment
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Our facilities are designed with your childs safety in mind. With secure premises, child-friendly spaces, and vigilant supervision, we provide peace of mind for parents and a joyful experience for children.
</xpath>
</template>
</odoo>
+1
View File
@@ -22,6 +22,7 @@
'views/snippets/s_sidegrid.xml',
'views/snippets/s_image_gallery.xml',
'views/snippets/s_freegrid.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_banner.xml',
'views/snippets/s_image_text.xml',
'views/snippets/s_image_title.xml',
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Tailored Furniture
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Custom-Designed Furniture
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Transform your living space with bespoke furniture pieces, crafted to reflect your unique style and fit perfectly in any room.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Personalized Interior Solutions
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Our expert designers collaborate with you to create furniture that meets your exact needs, ensuring every piece complements your home's aesthetic.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Handcrafted Quality and Comfort
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Experience the ultimate in comfort and durability with our handmade furniture, meticulously crafted from premium materials for a timeless appeal.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Exclusive Collections
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Discover our exclusive collections that combine innovation, elegance, and function, providing unique pieces that elevate any interior space.
</xpath>
</template>
</odoo>
+36
View File
@@ -685,4 +685,40 @@
</xpath>
</template>
<!-- ======== CARDS GRID ======== -->
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Exquisite Cocktails to Elevate Your Experience
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Berry Bliss Sangria
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
A delightful mix of red wine, fresh berries, orange juice, and a hint of brandy, served chilled for a refreshing, fruity experience with every sip.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Tropical Mojito
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
A refreshing mix of white rum, fresh mint, lime juice, and a splash of soda, perfect for a vibrant, tropical flavor that dances on the palate.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Spicy Margarita
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
A zesty blend of tequila, lime juice, and a hint of jalapeño, balanced with a touch of agave syrup for a fiery twist on a classic favorite.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Smoky Old Fashioned
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
A rich mix of bourbon, bitters, and a hint of smoked oak, finished with an orange peel and a cherry, offering a deep, complex flavor.
</xpath>
</template>
</odoo>
+1
View File
@@ -14,6 +14,7 @@
'views/snippets/s_cta_box.xml',
'views/snippets/s_carousel.xml',
'views/snippets/s_striped_top.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_image_text.xml',
'views/snippets/s_images_mosaic.xml',
'views/snippets/s_media_list.xml',
@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_cc5" remove="o_cc2" separator=" "/>
</xpath>
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Experience the Best of Our Festival
</xpath>
<!-- Card 1 -->
<xpath expr="(//div[hasclass('s_card')])[1]" position="attributes">
<attribute name="class" add="border" separator=" "/>
<attribute name="style" add="border-width: 0px !important;" separator=" "/>
</xpath>
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Engaging Social Activities
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Connect with fellow festival-goers through a variety of social activities, from interactive games to community art projects, creating memories that last a lifetime.
</xpath>
<!-- Card 2 -->
<xpath expr="(//div[hasclass('s_card')])[2]" position="attributes">
<attribute name="class" add="border" separator=" "/>
<attribute name="style" add="border-width: 0px !important;" separator=" "/>
</xpath>
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Incredible Lineup of Artists
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Enjoy performances from a diverse range of talented artists, bringing you the best in music, dance, and visual arts from around the world.
</xpath>
<!-- Card 3 -->
<xpath expr="(//div[hasclass('s_card')])[3]" position="attributes">
<attribute name="class" add="border" separator=" "/>
<attribute name="style" add="border-width: 0px !important;" separator=" "/>
</xpath>
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Exclusive Festival Merchandise
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Grab your exclusive festival merch, from stylish apparel to unique souvenirs, so you can remember your festival experience in style.
</xpath>
<!-- Card 4 -->
<xpath expr="(//div[hasclass('s_card')])[4]" position="attributes">
<attribute name="class" add="border" separator=" "/>
<attribute name="style" add="border-width: 0px !important;" separator=" "/>
</xpath>
<xpath expr="(//h5)[4]" position="replace" mode="inner">
High-Quality Music Experience
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Immerse yourself in an exceptional audio journey with high-quality sound systems and curated playlists, ensuring an unforgettable musical experience.
</xpath>
</template>
</odoo>
+1
View File
@@ -13,6 +13,7 @@
'views/snippets/s_cta_box.xml',
'views/snippets/s_cover.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_striped_top.xml',
'views/snippets/s_card_offset.xml',
'views/snippets/s_text_image.xml',
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Blooming with Quality and Care
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Freshness Like a Rose
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Just like a rose stands out for its timeless beauty, our commitment to freshness ensures that every arrangement leaves a lasting impression.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Creativity Like a Wildflower
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Our designs are as unique and diverse as a field of wildflowers, bringing creativity and flair to every bouquet we create.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Reliability Like a Sunflower
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Just as sunflowers always turn towards the sun, we are dedicated to providing reliable service that meets your floral needs, every time.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Elegance Like an Orchid
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
With the elegance of an orchid, our attention to detail and passion for perfection shine through in every floral arrangement we deliver.
</xpath>
</template>
</odoo>
+23
View File
@@ -758,5 +758,28 @@
Unlock your business potential.
</xpath>
</template>
<!-- ==== Cards Grid ===== -->
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Card 1 -->
<xpath expr="(//div[hasclass('s_card')])[1]" position="attributes">
<attribute name="class" add="border" separator=" "/>
<attribute name="style" add="border-width: 0px !important;" separator=" "/>
</xpath>
<!-- Card 2 -->
<xpath expr="(//div[hasclass('s_card')])[2]" position="attributes">
<attribute name="class" add="border" separator=" "/>
<attribute name="style" add="border-width: 0px !important;" separator=" "/>
</xpath>
<!-- Card 3 -->
<xpath expr="(//div[hasclass('s_card')])[3]" position="attributes">
<attribute name="class" add="border" separator=" "/>
<attribute name="style" add="border-width: 0px !important;" separator=" "/>
</xpath>
<!-- Card 4 -->
<xpath expr="(//div[hasclass('s_card')])[4]" position="attributes">
<attribute name="class" add="border" separator=" "/>
<attribute name="style" add="border-width: 0px !important;" separator=" "/>
</xpath>
</template>
</odoo>
+1
View File
@@ -14,6 +14,7 @@
'views/snippets/s_cta_box.xml',
'views/snippets/s_banner.xml',
'views/snippets/s_picture.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_striped_top.xml',
'views/snippets/s_card_offset.xml',
'views/snippets/s_image_text.xml',
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Explore Our Featured Properties
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Spacious Urban Loft
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Experience city living at its finest in this expansive urban loft, featuring high ceilings, open-plan living spaces, and modern finishes, all in a prime location.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Charming Suburban Home
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Enjoy the comfort of this delightful suburban home with a spacious yard, cozy interior, and family-friendly neighborhood, perfect for making lasting memories.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Luxurious Waterfront Villa
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Indulge in opulence with this stunning waterfront villa, boasting panoramic views, a private pool, and exquisite design elements that offer a serene and exclusive living experience.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Contemporary Penthouse
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Discover modern elegance in this chic penthouse, featuring sleek architecture, top-of-the-line amenities, and breathtaking cityscape views, ideal for those who appreciate luxury and style.
</xpath>
</template>
</odoo>
+1
View File
@@ -15,6 +15,7 @@
'views/snippets/s_banner.xml',
'views/snippets/s_call_to_action.xml',
'views/snippets/s_carousel.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_color_blocks_2.xml',
'views/snippets/s_comparisons.xml',
'views/snippets/s_company_team_detail.xml',
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Committed to a Greener Future
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Sustainable Practices
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
We implement sustainable practices across all aspects of our operations, from reducing waste and conserving resources to supporting eco-friendly initiatives.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Eco-Friendly Materials
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Our commitment to the environment includes using eco-friendly materials in our products and services, ensuring minimal impact on the planet while maintaining high quality.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Community Engagement
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
We actively engage with our community to promote environmental awareness and participate in local green initiatives, fostering a collective effort toward a more sustainable future.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Energy Efficiency
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
We prioritize energy efficiency in our operations, adopting practices and technologies that reduce energy consumption and lower our carbon footprint.
</xpath>
</template>
</odoo>
+36
View File
@@ -781,4 +781,40 @@
</xpath>
</template>
<!-- ======== CARDS GRID ======== -->
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<!-- Title -->
<xpath expr="//h3" position="replace" mode="inner">
Unleash the Power of Our Sports Cars
</xpath>
<!-- Card 1 -->
<xpath expr="(//h5)[1]" position="replace" mode="inner">
High-Performance Engine
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Experience thrilling acceleration and top speeds with our sports cars high-performance engine, designed for an exhilarating driving experience on both the track and the road.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Sporty Interior
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Immerse yourself in a driver-focused cockpit with sport seats, intuitive controls, and premium materials, all crafted to enhance your driving pleasure and comfort.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Precision Handling
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Enjoy exceptional control and responsiveness with advanced suspension systems and precise steering, offering unmatched agility and cornering capabilities.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Aerodynamic Design
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Achieve optimal performance with a sleek, aerodynamic design that reduces drag and enhances stability, ensuring superior speed and efficiency.
</xpath>
</template>
</odoo>
+1
View File
@@ -15,6 +15,7 @@
'views/snippets/s_banner.xml',
'views/snippets/s_striped_top.xml',
'views/snippets/s_call_to_action.xml',
'views/snippets/s_cards_grid.xml',
'views/snippets/s_sidegrid.xml',
'views/snippets/s_carousel.xml',
'views/snippets/s_company_team.xml',
+34
View File
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cards_grid" inherit_id="website.s_cards_grid">
<xpath expr="(//h5)[1]" position="replace" mode="inner">
Dream Wedding Venues
</xpath>
<xpath expr="(//p)[1]" position="replace" mode="inner">
Discover breathtaking venues that capture the essence of romance, from grand castles to scenic beach resorts, perfect for your unforgettable day.
</xpath>
<!-- Card 2 -->
<xpath expr="(//h5)[2]" position="replace" mode="inner">
Bespoke Wedding Planning
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
Our expert team crafts personalized wedding experiences, managing every detail so you can enjoy a stress-free celebration with your loved ones.
</xpath>
<!-- Card 3 -->
<xpath expr="(//h5)[3]" position="replace" mode="inner">
Dance and Music Entertainment
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
From romantic first dances to lively late-night parties, we'll create the perfect mood on a stunning dancefloor for your special day.
</xpath>
<!-- Card 4 -->
<xpath expr="(//h5)[4]" position="replace" mode="inner">
Luxury Honeymoon Packages
</xpath>
<xpath expr="(//p)[4]" position="replace" mode="inner">
Embark on a romantic getaway with our exclusive honeymoon packages, featuring the worlds most enchanting destinations and experiences.
</xpath>
</template>
</odoo>