Files
design-themes/theme_notes/views/snippets/s_company_team.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

51 lines
2.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_company_team" inherit_id="website.s_company_team">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_cc o_cc2 pb128" remove="pb48" separator=" "/>
</xpath>
<!-- Member #1 -->
<xpath expr="//div[hasclass('col-lg-8')]//h4" position="replace" mode="inner">
Tony
</xpath>
<xpath expr="//div[hasclass('col-lg-8')]//p" position="replace" mode="inner">
Tony is praised for the quality of his flow and beats but often criticised because of the controversial nature of his lyrics. He has also established a label, and developed a line of jewellery.
</xpath>
<!-- Member #2 -->
<xpath expr="(//div[hasclass('col-lg-8')])[2]//h4" position="replace" mode="inner">
Aline
</xpath>
<xpath expr="(//div[hasclass('col-lg-8')])[2]//p" position="replace" mode="inner">
Aline, is a French singer, songwriter and producer. In 2016, she was ranked as the most powerful and influential French person by Vanity Fair, who noticed her "radiance of French genius.
</xpath>
<!-- Member #3 -->
<xpath expr="(//div[hasclass('col-lg-8')])[3]//h4" position="replace" mode="inner">
Mich Starck
</xpath>
<xpath expr="(//div[hasclass('col-lg-8')])[3]//p" position="replace" mode="inner">
Mich Starck is a French DJ, record producer and songwriter. He has sold over nine million albums and thirty million singles worldwide. In 2011, he was voted as the number one DJ in the DJ Mag Top 100 DJs poll.
</xpath>
<!-- Member #4 -->
<xpath expr="(//div[hasclass('col-lg-8')])[4]//h4" position="replace" mode="inner">
Joseris
</xpath>
<xpath expr="(//div[hasclass('col-lg-8')])[4]//p" position="replace" mode="inner">
Joseris is a Belgian band that formed in October 1995. Though originally categorised as a trip hop group, they quickly expanded their sound to the point where they could no longer be described as a lone genre, but rather encompass alternative, electronica, electro-pop, rock, and a mixture of others.
</xpath>
</template>
<template id="configurator_s_company_team" inherit_id="website.configurator_s_company_team">
<!-- Shape option -->
<xpath expr="//section" position="attributes">
<attribute name="data-oe-shape-data">{"shape":"web_editor/Wavy/13_001","flip":[]}</attribute>
</xpath>
<!-- Shape -->
<xpath expr="//div[hasclass('container')]" position="before">
<div class="o_we_shape o_web_editor_Wavy_13_001"/>
</xpath>
</template>
</odoo>