Files
design-themes/theme_yes/views/snippets/s_masonry_block.xml
T
can-odoo 56a04f327b [IMP] theme_yes: change description of masonry snippet
Introduced with [1], same description for Caterers and Venues block.

[1]: https://github.com/odoo/design-themes/commit/299d504df31bf179775eec1d37e71605c3637460

task-2994239

closes odoo/design-themes#640

Signed-off-by: Romain Derie (rde) <rde@odoo.com>
2023-04-11 11:34:13 +02:00

73 lines
3.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_masonry_block_default_template" inherit_id="website.s_masonry_block_default_template">
<!-- Col #1 - Image Block -->
<xpath expr="//div[hasclass('oe_img_bg')]" position="attributes">
<attribute name="class" add="col-lg-4 border rounded" remove="col-lg-6" separator=" "/>
<attribute name="style" add="border-color: rgb(255, 255, 255) !important; border-width: 10px !important; border-radius: 14px !important;" separator="; "/>
</xpath>
<!-- Col #2 - Little Blocks -->
<xpath expr="//div[hasclass('col-lg-6')]" position="attributes">
<attribute name="class" add="col-lg-8" remove="col-lg-6" separator=" "/>
</xpath>
<!-- Little block #01 - Main div -->
<xpath expr="//div[hasclass('col-lg-6')]" position="attributes">
<attribute name="class" add="border rounded" separator=" "/>
<attribute name="style" add="border-color: rgb(255, 255, 255) !important; border-width: 10px !important; border-radius: 14px !important;" separator="; "/>
</xpath>
<!-- Little block #01 - Title -->
<xpath expr="//h3" position="replace" mode="inner">
Caterers
</xpath>
<!-- Little block #01 - Text -->
<xpath expr="//*[hasclass('col-lg-6')]//p" position="replace">
<p>Check out our list of favorite caterers.</p>
<p><a href="#" class="btn btn-secondary rounded-circle">Find a Caterer</a></p>
</xpath>
<!-- Little block #02 - Main div -->
<xpath expr="(//*[hasclass('col-lg-6')])[2]" position="attributes">
<attribute name="class" add="border rounded" separator=" "/>
<attribute name="style" add="border-color: rgb(255, 255, 255) !important; border-width: 10px !important; border-radius: 14px !important;" separator="; "/>
</xpath>
<!-- Little block #02 - Title -->
<xpath expr="(//h3)[2]" position="replace" mode="inner">
Venues
</xpath>
<!-- Little block #02 - Text -->
<xpath expr="(//*[hasclass('col-lg-6')])[2]//p" position="replace">
<p>Checkout our list of favorite venues.</p>
<p><a href="#" class="btn btn-secondary">Find a venue</a></p>
</xpath>
<!-- Little block #03 - Main div -->
<xpath expr="(//*[hasclass('col-lg-6')])[3]" position="attributes">
<attribute name="class" add="border rounded" separator=" "/>
<attribute name="style" add="border-color: rgb(255, 255, 255) !important; border-width: 10px !important; border-radius: 14px !important;" separator="; "/>
</xpath>
<!-- Little block #03 - Title -->
<xpath expr="(//h3)[3]" position="replace" mode="inner">
Attire
</xpath>
<!-- Little block #03 - Text -->
<xpath expr="(//*[hasclass('col-lg-6')])[3]//p" position="replace">
<p>Find the perfect outfit for before, during and after the main event.</p>
<p><a href="#" class="btn btn-primary">Shop</a></p>
</xpath>
<!-- Little block #04 - Main div -->
<xpath expr="(//div[hasclass('col-lg-6')])[4]" position="attributes">
<attribute name="class" add="border rounded" separator=" "/>
<attribute name="style" add="border-color: rgb(255, 255, 255) !important; border-width: 10px !important; border-radius: 14px !important;" separator="; "/>
</xpath>
<!-- Little block #04 - Title -->
<xpath expr="(//h3)[4]" position="replace" mode="inner">
FAQ
</xpath>
<!-- Little block #04 - Text -->
<xpath expr="(//*[hasclass('col-lg-6')])[4]//p" position="replace">
<p>Find the answers to all your questions <br/>in our FAQ.</p>
<p><a href="#" class="btn btn-primary">Go to FAQ</a></p>
</xpath>
</template>
</odoo>