[IMP] theme_*: adapt s_split_intro snippet

*: anelusia, artists, avantgarde, aviato, beauty, bewise, bistro,
bookstore, buzzy, cobalt, enark, kiddo, loftspace, monglia, nano, notes,
odoo_experts, orchid, real_estate, treehouse, vehicle, yes, zap.

This commit reviews the occurrences of `s_split_intro` snippet across
design themes.

task-4077616
part of task-4077427

closes odoo/design-themes#876

Related: odoo/odoo#175321
Signed-off-by: Christopher du Toit (chto) <chto@odoo.com>
This commit is contained in:
Chrysanthe (chgo)
2024-08-01 13:45:39 +02:00
parent bd4b876b57
commit b93e7407e5
81 changed files with 462 additions and 0 deletions
+1
View File
@@ -62,6 +62,7 @@
'views/snippets/s_image_text_overlap.xml',
'views/snippets/s_features.xml',
'views/snippets/s_numbers_boxed.xml',
'views/snippets/s_split_intro.xml',
'views/new_page_template.xml',
],
'images': [
Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

+6
View File
@@ -482,6 +482,12 @@ Check in theme_kea's primary_variables.scss, theme.scss and theme_common's mixin
<field name="name">website.s_empowerment_default_image</field>
<field name="url">/theme_yes/static/src/img/snippets/s_empowerment_default_image.jpg</field>
</record>
<!-- // Split intro // -->
<record id="s_split_intro_default_image" model="theme.ir.attachment">
<field name="key">website.s_split_intro_default_image</field>
<field name="name">website.s_split_intro_default_image</field>
<field name="url">/theme_yes/static/src/img/snippets/s_split_intro_default_image.jpg</field>
</record>
<!-- // Website Form Overlay // -->
<record id="s_website_form_overlay_default_image" model="theme.ir.attachment">
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_split_intro" inherit_id="website.s_split_intro">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
</xpath>
<!-- Left column -->
<xpath expr="//h1" position="replace" mode="inner">
Craft your<br/>dream wedding
</xpath>
<xpath expr="//p" position="replace" mode="inner">
<br/>Let us turn your vision into a stunning reality. As your dedicated wedding planner, we handle every detail with care and creativity, from venue selection to final touches. Whether you envision an intimate ceremony or a grand celebration, we ensure your special day is seamless, beautiful, and unforgettable.<br/><br/>
</xpath>
</template>
</odoo>