summaryrefslogtreecommitdiff
path: root/addons/website/views/snippets/s_showcase.xml
blob: 1b1ea7deb7b33e23e0fffe4d253fcc2a4a47a510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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>