Files
design-themes/theme_common/views/s_showcase_image.xml
T
2021-05-11 15:56:19 +02:00

64 lines
3.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template name="Showcase Image" id="s_showcase_image">
<section class="s_showcase_image container-fluid">
<div class="row">
<figure class="bg-img-03 col-lg-6 bl">
<figcaption class="o_animable">
<h6>Sample description</h6>
Write one or two paragraphs describing your product
</figcaption>
</figure>
<div class="info col-lg-6">
<div class="row" contenteditable="false">
<div class="content col-md-11 col-lg-8" contenteditable="true">
<h3>Sample Title</h3>
<h4 class="text-primary">With a great subtitle</h4>
<p>Write one or two paragraphs describing your product, services or a specific feature. To be successful your content needs to be useful to your readers.</p>
<a href="#" class="btn btn-secondary">Click here</a>
</div>
</div>
</div>
</div>
</section>
</template>
<template id="s_showcase_image-opt" inherit_id="website.snippet_options">
<xpath expr="//div[@data-js='background']" position="before">
<div data-selector=".s_showcase_image">
<li class="dropdown-submenu">
<a tabindex="-1" href="#"><i class="fa fa-exchange"/>Image position</a>
<div class="dropdown-menu">
<a href="#" class="dropdown-item" data-select-class="">Left</a>
<a href="#" class="dropdown-item" data-select-class="s_right">Right</a>
</div>
</li>
</div>
<div data-selector=".s_showcase_image figure">
<li class="dropdown-submenu">
<a tabindex="-1" href="#"><i class="fa fa-tag"/>Caption position</a>
<div class="dropdown-menu">
<a href="#" class="dropdown-item" data-select-class="tl">Top Left</a>
<a href="#" class="dropdown-item" data-select-class="tr">Top Right</a>
<a href="#" class="dropdown-item" data-select-class="bl">Bottom Left</a>
<a href="#" class="dropdown-item" data-select-class="">Bottom Right</a>
</div>
</li>
</div>
</xpath>
<xpath expr="//div[@data-js='background']" position="attributes">
<attribute name="data-selector" add=".s_showcase_image figure"/>
</xpath>
<xpath expr="//div[@id='so_main_colorpicker']" position="attributes">
<attribute name="data-selector" add=".s_showcase_image figure, .s_showcase_image figcaption"/>
</xpath>
<xpath expr="//div[@data-js='background_position']" position="attributes">
<attribute name="data-selector" add=".s_showcase_image figure"/>
</xpath>
</template>
</odoo>