- Repo for opensource odoo website theme (since V13.0)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?xml version="1.0" encoding="utf-8"?> <odoo> <template id="s_clonable_boxes" name="Clonable Boxes"> <section class="s_clonable_boxes"> <div class="container"> <div class="row"> <div class="col-lg-4 bg-alpha"> <div class="item"> <h3>Box title</h3> <p>Box Description</p> <div class="oe_structure"/> </div> </div> <div class="col-lg-4 bg-beta"> <div class="item"> <h3>Box title</h3> <p>Box Description</p> <div class="oe_structure"/> </div> </div> <div class="col-lg-4 bg-gamma"> <div class="item"> <h3>Box title</h3> <p>Box Description</p> <div class="oe_structure"/> </div> </div> </div> </div> </section> </template>
<template id="s_clonable_boxes-opt" inherit_id="website.snippet_options"> <xpath expr="//div[@id='so_main_colorpicker']" position="attributes"> <attribute name="data-selector" separator=", " add=".s_clonable_boxes .row > div"/> </xpath> <xpath expr="//div[@data-js='background']" position="attributes"> <attribute name="data-selector" separator=", " add=".s_clonable_boxes .row > div"/> </xpath> <xpath expr="//div[@data-js='background_position']" position="attributes"> <attribute name="data-selector" separator=", " add=".s_clonable_boxes .row > div"/> </xpath> </template> </odoo>
|