Files
design-themes/theme_clean/views/snippets/s_three_columns.xml
T
Younn Olivier da5c40ff38 [IMP] theme_*: use theme colors for snippets background
This commit changes the bg-200 static color that some snippets were
using, for the second theme color so that blocks backgrounds connect
well together.

task-2542318

closes odoo/design-themes#15

Related: odoo/odoo#71426
Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
2021-06-10 13:39:33 +00:00

30 lines
1.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_three_columns" inherit_id="website.s_three_columns">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_cc4" remove="o_cc2" separator=" "/>
</xpath>
<xpath expr="//div[hasclass('card-body')]" position="replace">
<div class="card-body">
<h3 class="card-title">Our mission</h3>
<p class="card-text">Provide clear and concise financial advices to make your financial wealth grow. And this, completely free of charge</p>
</div>
</xpath>
<!-- Column 2 -->
<xpath expr="(//div[hasclass('card-body')])[2]" position="replace">
<div class="card-body">
<h3 class="card-title">Our values</h3>
<p class="card-text">We created our company to improve the work-life balance. We believe that we need to focus on our family more than our work and finances.</p>
</div>
</xpath>
<!-- Column 3 -->
<xpath expr="(//div[hasclass('card-body')])[3]" position="replace">
<div class="card-body">
<h3 class="card-title">Our team</h3>
<p class="card-text">Composed of 25 people from 25 to 66 years, were a young and dynamic company. We have open positions, do not hesitate to contact us.</p>
</div>
</xpath>
</template>
</odoo>