blob: 62dee97be0878508db73e2a1a7e30cac6313ccbd (
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
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template name="Steps" id="s_process_steps">
<section class="s_process_steps pt24 pb24">
<div class="container">
<div class="row no-gutters">
<div class="col-lg-3 s_process_step pt24 pb24">
<div class="s_process_step_icon">
<span>
<i class="fa fa-shopping-basket fa-2x mx-auto rounded-circle bg-primary"/>
</span>
</div>
<div class="s_process_step_content text-center">
<h2>Add to cart</h2>
<p>Let your customers follow <br/>and understand your process.</p>
</div>
</div>
<div class="col-lg-3 s_process_step pt24 pb24">
<div class="s_process_step_icon">
<span>
<i class="fa fa-unlock-alt fa-2x mx-auto rounded-circle bg-o-color-5"/>
</span>
</div>
<div class="s_process_step_content text-center">
<h2>Sign in</h2>
<p>Click on the icon to adapt it <br/>to your purpose.</p>
</div>
</div>
<div class="col-lg-3 s_process_step pt24 pb24">
<div class="s_process_step_icon">
<span>
<i class="fa fa-paypal fa-2x mx-auto rounded-circle bg-secondary"/>
</span>
</div>
<div class="s_process_step_content text-center">
<h2>Pay</h2>
<p>Duplicate blocks <br/>to add more steps.</p>
</div>
</div>
<div class="col-lg-3 s_process_step pt24 pb24">
<div class="s_process_step_icon">
<span>
<i class="fa fa-plane fa-2x mx-auto rounded-circle bg-o-color-3"/>
</span>
</div>
<div class="s_process_step_content text-center">
<h2>Get Delivered</h2>
<p>Select and delete blocks <br/>to remove some steps.</p>
</div>
</div>
</div>
</div>
</section>
</template>
<template id="assets_snippet_s_process_steps_css_000" inherit_id="website.assets_frontend">
<xpath expr="//link[last()]" position="after">
<link rel="stylesheet" type="text/scss" href="/website/static/src/snippets/s_process_steps/000.scss"/>
</xpath>
</template>
</odoo>
|