diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/website/views/snippets/s_showcase.xml | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/website/views/snippets/s_showcase.xml')
| -rw-r--r-- | addons/website/views/snippets/s_showcase.xml | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/addons/website/views/snippets/s_showcase.xml b/addons/website/views/snippets/s_showcase.xml new file mode 100644 index 00000000..1b1ea7de --- /dev/null +++ b/addons/website/views/snippets/s_showcase.xml @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + +<!-- Template --> +<template name="Showcase" id="s_showcase"> + <section class="s_showcase pt48 pb48" data-vcss="002"> + <div class="container"> + <div class="row no-gutters s_col_no_resize s_col_no_bgcolor s_nb_column_fixed"> + <div class="col-lg text-lg-right"> + <div class="row"> + <div class="col-lg-12 pt24 pb24" data-name="Block"> + <div class="s_showcase_title d-flex flex-lg-row-reverse mb-2"> + <i class="s_showcase_icon fa fa-2x fa-desktop text-secondary mr-3 mr-lg-0 ml-lg-3"/> + <h3>First feature</h3> + </div> + <p>A short description of this great feature.</p> + </div> + <div class="col-lg-12 pt24 pb24" data-name="Block"> + <div class="s_showcase_title d-flex flex-lg-row-reverse mb-2"> + <i class="s_showcase_icon fa fa-2x fa-paint-brush text-secondary mr-3 mr-lg-0 ml-lg-3"/> + <h3>Second feature</h3> + </div> + <p>A short description of this great feature.</p> + </div> + </div> + </div> + <div class="col-1"> + <div class="w-50 h-100 border-right"/> + </div> + <div class="col-lg"> + <div class="row"> + <div class="col-lg-12 pt24 pb24" data-name="Block"> + <div class="s_showcase_title d-flex mb-2"> + <i class="s_showcase_icon fa fa-2x fa-heart text-secondary mr-3"/> + <h3>Another feature</h3> + </div> + <p>A short description of this great feature.</p> + </div> + <div class="col-lg-12 pt24 pb24" data-name="Block"> + <div class="s_showcase_title d-flex mb-2"> + <i class="s_showcase_icon fa fa-2x fa-gift text-secondary mr-3"/> + <h3>Last Feature</h3> + </div> + <p>A short description of this great feature.</p> + </div> + </div> + </div> + </div> + </div> + <div class="container text-lg-center"> + <p><br/></p> + <a href="#" class="btn btn-primary mb-2">Discover all the features</a> + </div> + </section> +</template> + +<!-- Options --> +<template id="s_showcase_options" inherit_id="website.snippet_options"> + <xpath expr="//div[@data-js='Box']" position="before"> + <div data-js="Showcase" data-selector=".s_showcase .row > div:has(> .s_showcase_title)"/> + </xpath> +</template> + +<!-- Assets --> +<template id="assets_snippet_s_showcase_css_000" inherit_id="website.assets_frontend" active="False"> + <xpath expr="//link[last()]" position="after"> + <link rel="stylesheet" type="text/scss" href="/website/static/src/snippets/s_showcase/000.scss"/> + </xpath> +</template> +<template id="assets_snippet_s_showcase_css_001" inherit_id="website.assets_frontend" active="False"> + <xpath expr="//link[last()]" position="after"> + <link rel="stylesheet" type="text/scss" href="/website/static/src/snippets/s_showcase/001.scss"/> + </xpath> +</template> + +</odoo> |
