Files
design-themes/theme_kiddo/views/snippets/s_cover.xml
T
Benoit Socias d206c11972 [IMP] theme_*: extract shapes to configurator-dedicated templates
This commit extracts the pre-defined section shapes from blocks into
templates that are dedicated to being used by the configurator.

For blocks that are not used in configurator pages, the configurator
templates have not been created.

task-3381714

Part-of: odoo/design-themes#692
2023-10-14 03:27:02 +00:00

59 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_cover" inherit_id="website.s_cover">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_full_screen_height o_cc o_cc1" remove="bg-black-50" separator=" "/>
</xpath>
<!-- Filter -->
<xpath expr="//div[hasclass('o_we_bg_filter')]" position="attributes">
<attribute name="class" add="bg-white-75" remove="bg-black-50" separator=" "/>
</xpath>
<!-- Heading -->
<xpath expr="//font" position="replace" mode="inner">
Kiddo Nursery
</xpath>
<!-- Text -->
<xpath expr="//p" position="replace" mode="inner">
The countryside nursery since 2002.<br/>
A truly unique service in a highly secure and tranquil setting.
</xpath>
<!-- Separator -->
<xpath expr="//p" position="before">
<div data-snippet="s_hr" data-name="Separator" class="s_hr pt24 pb32">
<hr class="w-25 mx-auto" style="border-top: 8px dotted var(--o-color-2) !important;"/>
</div>
</xpath>
<!-- Paragraph -->
<xpath expr="//p[last()]" position="before">
<p class="lead o_default_snippet_text" style="text-align: center;">
<br/>
</p>
</xpath>
<!-- Button -->
<xpath expr="//a[hasclass('btn')]" position="attributes">
<attribute name="class" add="btn-lg" separator=" "/>
</xpath>
</template>
<template id="configurator_s_cover" inherit_id="website.configurator_s_cover">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="data-oe-shape-data">{"shape":"web_editor/Floats/14"}</attribute>
</xpath>
<!-- Shape -->
<xpath expr="//div[hasclass('container')]" position="before">
<div class="o_we_shape o_web_editor_Floats_14"/>
</xpath>
</template>
</odoo>