-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (73 loc) · 3.47 KB
/
index.html
File metadata and controls
91 lines (73 loc) · 3.47 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<title>withPricelist API Example</title>
<style>
.text-lgray {
color: rgba(202, 202, 202);
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="">
<div class="page-header">
<h3>Esempio Pricelist ricerca con date preimpostate 7 - 12 Agosto 2020 (2 Adulti, 2 Bambini 5,7 anni)</h3>
</div>
<div class="withPricelist" id="camping" data-with-slug="obiv" data-checkinout="07/08/2020 - 12/08/2020" data-with-adults="2" data-with-children="2" data-with-children-age="5, 7"></div>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<div class="col-sm-12 lead jumbotron">
<p class="">
Add your own access token with ?access_token=1829371hes..... directly in url params
</p>
<p class="text-lgray">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Why do we use it?
</p>
<p class="text-lgray">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
</p>
</div>
</div>
<div class="">
<div class="page-header">
<h3>Esempio Pricelist intera senza ricerca</h3>
</div>
<div class="withPricelist" id="villaggio" data-with-slug="obiv"></div>
</div>
<div class="">
<div class="page-header">
<h3>Esempio Pricelist senza ricerca con solo una riga</h3>
</div>
<div class="withPricelist"
id="villaggio"
data-with-slug="obiv"
data-with-services="1"
></div>
</div>
<div class="">
<div class="page-header">
<h3>Esempio Pricelist senza ricerca con solo una riga e in lingua inglese forzata</h3>
</div>
<div class="withPricelist"
id="villaggio"
data-with-slug="obiv"
data-with-services="1"
data-with-lang="en"
></div>
</div>
</div>
<!-- CSS (not mandatory) -->
<link rel="stylesheet" href="js/withPricelist/css/withPricelist.min.css">
<!-- JS -->
<script id="withPricelistScript"
src="node_modules/requirejs/require.js"
data-main="js/withPricelist/withPricelist.min.js"
data-fallback-lang="it">
</script>
</body>
</html>