[IMP] website snippet: background option for paralax and fix banner
[odoo/odoo.git] / addons / website / static / src / xml / website.snippets.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <templates id="template" xml:space="preserve">
3
4     <!-- Snippet loader -->
5     <t t-name="website.snippets_button">
6         <li class="navbar-form"><button type="button" data-action="snippet" class="btn btn-primary">Insert Blocks</button></li>
7     </t>
8     <t t-name="website.snippets_style">
9         <li class="navbar-form">
10             <div class="btn-group">
11                 <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
12                     Block style <span class="caret"></span>
13                 </button>
14                 <ul class="dropdown-menu" id="oe_snippets_style" role="menu"></ul>
15             </div>
16         </li>
17     </t>
18     <t t-name="website.snippets_modal">
19         <div class="modal" id="oe_droperror" tabindex="-1" role="dialog">
20             <div class="modal-dialog">
21                 <div class="modal-content">
22                     <div class="modal-header">
23                         <button type="button" class="close" data-dismiss="modal">&amp;times;</button>
24                         <h4 class="modal-title">
25                             Building Block Not Inserted
26                         </h4>
27                     </div>
28                     <div class="modal-body">
29                         <p>
30                             The building block has not been inserted in your
31                             page because you did not drop it in a valid zone.
32                             Valid zone are represented by rectangle like this:
33                         </p>
34                         <div class="row">
35                             <div class="col-sm-4 col-sm-offset-4 oe_drop_zone_style text-center">
36                                 drop in this zone
37                             </div>
38                         </div>
39                         <p class="text-muted">
40                             When your cursor is in a valid zone, OpenERP shows
41                             you a preview of the building block in your page.
42                             You must release the block when the preview is visible.
43                         </p>
44                     </div>
45                     <div class="modal-footer">
46                         <button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
47                         <div class="pull-left">
48                             <input type="checkbox" value="1"/> Never show this tip again
49                         </div>
50                     </div>
51                 </div>
52             </div>
53         </div>
54     </t>
55
56     <t t-name="website.snippets">
57         <div id='oe_snippets'>
58             <div class="scroll">
59                 <ul class="nav navbar-nav">
60                   <li><a href="#snippet_structure">Structure</a></li>
61                   <li><a href="#snippet_content">Content</a></li>
62                   <li><a href="#snippet_business">Business</a></li>
63                   <li><a href="#snippet_effect">Effects</a></li>
64                 </ul>
65                 <div class="pill-content">
66                     <div id="snippet_structure"><label><div>Structure</div></label></div>
67                     <div id="snippet_content"><label><div>Content</div></label></div>
68                     <div id="snippet_business"><label><div>Business</div></label></div>
69                     <div id="snippet_effect"><label><div>Effects</div></label></div>
70                 </div>
71             </div>
72         </div>
73     </t>
74
75     <t t-name="website.snippet_overlay">
76         <div class="oe_overlay">
77             <div class="oe_overlay_options">
78                 <div class="btn-group">
79                     <a href="#" class="btn btn-default btn-sm oe_snippet_parent" title="Select Container Block"><span class="icon-upload-alt"/></a>
80                     <div class="dropdown oe_options hidden btn-group">
81                         <a href="#" data-toggle="dropdown" class="btn btn-default btn-sm" title="Customize">Customize <span class="caret"/></a>
82                         <ul class="dropdown-menu" role="menu"></ul>
83                     </div>
84                     <a href="#" class="btn btn-default btn-sm oe_snippet_move" title="Drag to Move">&amp;nbsp; <span class="icon-move"/> &amp;nbsp;</a>
85                     <a href="#" class="btn btn-default btn-sm oe_snippet_clone" title="Duplicate Container"><span class="icon-copy"/></a>
86                     <a href="#" class="btn btn-default btn-sm oe_snippet_remove" title="Remove Block"><span class="icon-remove"/></a>
87                 </div>
88             </div>
89         </div>
90     </t>
91
92     <t t-name="website.snippet_manipulator">
93         <div class='oe_snippet_manipulator'></div>
94     </t>
95
96     <!-- snippet objects -->
97
98     <div t-name="website.snippets.resize" data-snippet-id='resize'>
99         <!-- custom data for the widget -->
100         <div class='oe_handles'>
101             <div class='oe_handle n'></div>
102             <div class='oe_handle e'></div>
103             <div class='oe_handle w'></div>
104             <div class='oe_handle s'></div>
105         </div>
106         <div class='oe_snippet_thumbnail'>Margin resize</div>
107     </div>
108
109     <div t-name="website.snippets.colmd" data-snippet-id='colmd' data-selector-vertical-children='.row'></div>
110
111     <!-- Structure Snippets -->
112
113     <div t-name="website.snippets.carousel" data-snippet-id='carousel' data-category='structure' data-selector-children='.oe_structure, [data-oe-type=html]'>
114         
115         <!-- editor bar to display inside the top edit bar -->
116         <li class='oe_snippet_options dropdown-submenu'>
117             <a tabindex="-1" href="#">Size</a>
118             <ul class="dropdown-menu" name="carousel-size">
119                 <li data-value="oe_small"><a>Small</a></li>
120                 <li data-value="oe_medium"><a>Medium</a></li>
121                 <li data-value="oe_big"><a>Big</a></li>
122             </ul>
123         </li>
124         <li class="oe_snippet_options dropdown-submenu">
125             <a tabindex="-1" href="#">Background</a>
126             <ul class="dropdown-menu" name="carousel-background">
127                 <li data-value="/website/static/src/img/banner/aqua.jpg"><a>Aqua</a></li>
128                 <li data-value="/website/static/src/img/banner/baby_blue.jpg"><a>Baby Blue</a></li>
129                 <li data-value="/website/static/src/img/banner/black.jpg"><a>Black</a></li>
130                 <li data-value="/website/static/src/img/banner/business_guy.jpg"><a>Business Guy</a></li>
131                 <li data-value="/website/static/src/img/banner/color_splash.jpg"><a>Color Splash</a></li>
132                 <li data-value="/website/static/src/img/banner/flower_field.jpg"><a>Flowers Field</a></li>
133                 <li data-value="/website/static/src/img/banner/greenfields.jpg"><a>Greenfields</a></li>
134                 <li data-value="/website/static/src/img/banner/landscape.jpg"><a>Landscape</a></li>
135                 <li data-value="/website/static/src/img/banner/mango.jpg"><a>Mango</a></li>
136                 <li data-value="/website/static/src/img/banner/mountains.jpg"><a>Mountains</a></li>
137                 <li data-value="/website/static/src/img/banner/orange_red.jpg"><a>Orange Red</a></li>
138                 <li data-value="/website/static/src/img/banner/flower.jpg"><a>Purple</a></li>
139                 <li data-value="/website/static/src/img/banner/velour.jpg"><a>Velour</a></li>
140                 <li data-value="/website/static/src/img/banner/wood.jpg"><a>Wood</a></li>
141                 <li data-value="/website/static/src/img/banner/yellow_green.jpg"><a>Yellow Green</a></li>
142                 <li class="oe_custom_bg"><b></b></li>
143             </ul>
144         </li>
145         <li class='oe_snippet_options dropdown-submenu'>
146             <a tabindex="-1" href="#">Style</a>
147             <ul class="dropdown-menu" name="carousel-style">
148                 <li data-value="text_only"><a>Text Only</a></li>
149                 <li data-value="image_text"><a>Image - Text</a></li>
150                 <li data-value="text_image"><a>Text - Image</a></li>
151             </ul>
152         </li>
153         <li class="oe_snippet_options divider"></li>
154         <li class='oe_snippet_options'>
155             <a href="#" class="button js_add">Add Slide</a>
156         </li>
157         <li class='oe_snippet_options'>
158             <a href="#" class="button js_remove">Remove Slide</a>
159         </li>
160
161         <!-- thumbnail to display inside the bottom widget list editor -->
162         <div class='oe_snippet_thumbnail'>
163             <img src="/website/static/src/img/banner/color_splash.jpg" style="position: absolute; left: 0; top: 40px; max-width: 100%"/>
164             <img src="/website/static/src/img/banner/banner_picture.png" style="position: absolute; left: 10px; top: 52px; max-width: 25%"/>
165             <span style="position: absolute; top: 50px; right: 10px;">Banner</span>
166         </div>
167
168         <!-- body to insert after drag and drop thumbnail -->
169         <div id="myCarousel" class="oe_snippet_body carousel slide oe_medium mb32" data-interval="10000">
170             <!-- Carousel items -->
171             <div class="carousel-inner">
172                 <div class="item image_text active">
173                     <img src="/website/static/src/img/banner/color_splash.jpg" width="100%" height="100%"/>
174                     <div class="container">
175                         <div class="carousel-caption content">
176                             <h2>Set Your Banner Title</h2>
177                             <h3>Customize with the top-left menu</h3>
178                             <p>
179                                 <a href="/page/website.contactus" class="btn btn-success btn-large">Contact us</a>
180                             </p>
181                         </div>
182                         <div class="carousel-image hidden-xs">
183                             <img src="/website/static/src/img/banner/banner_picture.png" alt="Banner OpenERP Image"/>
184                         </div>
185                     </div>
186                 </div>
187             </div>
188             <!-- Carousel nav -->
189             <a class="carousel-control left hidden" href="#myCarousel" data-slide="prev" style="width: 10%"><span class="glyphicon glyphicon-circle-arrow-left"><span class="hidden">.</span></span></a>
190             <a class="carousel-control right hidden" href="#myCarousel" data-slide="next" style="width: 10%"><span class="glyphicon glyphicon-circle-arrow-right"><span class="hidden">.</span></span></a>
191         </div>
192     </div>
193
194     <div t-name="website.snippets.darken" data-snippet-id='darken' data-category='style' data-selector='section'>
195         <div class='oe_snippet_label'>Darken</div>
196         <div class='oe_snippet_class'>dark</div>
197     </div>
198
199     <div t-name="website.snippets.well" data-snippet-id='well' data-category='content' data-selector-siblings='p, h1, h2, h3, blockquote'>
200         <div class='oe_snippet_thumbnail'>Well</div>
201         <div class="oe_snippet_body well">
202             Manage your sales funnel with no effort with OpenERP CRM. Attract
203             leads, follow-up on phone calls and meetings. Analyse the quality
204             of your leads to make informed decisions.
205         </div>
206     </div>
207
208     <div t-name="website.snippets.quote" data-snippet-id='quote' data-category='content' data-selector-siblings='p, h1, h2, h3, blockquote'>
209         <div class='oe_snippet_thumbnail'>Quote</div>
210         <blockquote class="oe_snippet_body">
211             <p>
212                 OpenERP provides essential platform for our project management.
213                 Things are better organized and more visible with it.
214             </p>
215             <small>John Doe, CEO</small>
216         </blockquote>
217     </div>
218
219     <div t-name="website.snippets.panel" data-snippet-id='panel' data-category='content' data-selector-siblings='p, h1, h2, h3, blockquote'>
220         <div class='oe_snippet_thumbnail'>Panel</div>
221         <div class="oe_snippet_body panel panel-default">
222             <div class="panel-heading">
223                 <h3 class="panel-title">OpenERP Features</h3>
224             </div>
225             <div class="panel-body">
226                 OpenERP's collaborative and realtime project management helps
227                 your team get work done. Keep track of everything, from the big
228                 picture to the minute details, from the customer contract to
229                 the billing.
230             </div>
231         </div>
232     </div>
233
234     <div t-name="website.snippets.surprise" data-snippet-id='vomify' data-category='content' data-selector-children='.oe_structure'>
235         <div class="oe_snippet_body" style="height: 0; position: absolute;"></div>
236         <div class='oe_snippet_thumbnail' style='background-image:radial-gradient(red,orange,yellow,green,blue);'>Surprise!</div>
237     </div>
238
239     <div t-name="website.snippets.text-image" data-snippet-id='text-image' data-category='structure' data-selector-children='.oe_structure, [data-oe-type=html]'>
240         <div class='oe_snippet_thumbnail'>
241             <span style="position: absolute; top: 50px; left: 5px;">Text-Image</span>
242             <img src="/website/static/src/img/banner/banner_picture.png" style="position: absolute; right: 5px; top: 50px; max-width: 28%"/>
243         </div>
244         <section class="oe_snippet_body">
245             <div class="container">
246                 <div class="row">
247                     <div class="col-md-6 mt32">
248                         <h3>Enterprise Social Network</h3>
249                         <p>
250                             Make every employee feel more connected and engaged
251                             with twitter-like features for your own company. Follow
252                             people, share best practices, 'like' top ideas, etc.
253                         </p><p>
254                             Connect with experts, follow what interests you, share
255                             documents and promote best practices with OpenERP
256                             Social application. Get work done with effective
257                             collaboration across departments, geographies
258                             and business applications.
259                         </p>
260                     </div>
261                     <div class="col-md-6 mt16 mb16">
262                         <img class="img-responsive shadow" src="/website/static/src/img/text_image.png"/>
263                     </div>
264                 </div>
265             </div>
266         </section>
267     </div>
268
269     <div t-name="website.snippets.image-text" data-snippet-id='image-text' data-category='structure' data-selector-children='.oe_structure, [data-oe-type=html]'>
270         <div class='oe_snippet_thumbnail'>
271             <img src="/website/static/src/img/banner/banner_picture.png" style="position: absolute; left: 5px; top: 50px; max-width: 28%"/>
272             <span style="position: absolute; top: 50px; right: 5px;">Image-Text</span>
273         </div>
274         <section class="oe_snippet_body">
275             <div class="container">
276                 <div class="row">
277                     <div class="col-md-6 mt16 mb16">
278                         <img class="img-responsive shadow" src="/website/static/src/img/image_text.jpg"/>
279                     </div>
280                     <div class="col-md-6 mt32">
281                         <h3>Manage Your Shops</h3>
282                         <p>
283                             OpenERP's Point of Sale introduces a super clean
284                             interface with no installation required that runs
285                             online and offline on modern hardwares.
286                         </p><p>
287                             It's full integration with the company inventory
288                             and accounting, gives you real time statistics and
289                             consolidations amongst all shops without the hassle
290                             of integrating several applications.
291                         </p>
292                     </div>
293                 </div>
294             </div>
295         </section>
296     </div>
297
298     <div t-name="website.snippets.jumbotron" data-snippet-id='jumbotron' data-category='structure' data-selector-children='.oe_structure, [data-oe-type=html]'>
299         <div class='oe_snippet_thumbnail'>
300             <div style="position: absolute; top: 30px; background-color: #eee; width: 100%; padding: 8px 0 6px 4px;">
301                 <div style="color: #000; display: block; text-align: left;">
302                     Jumbotron
303                     <div style="font-size: 9px; line-height: 9px; text-shadow: none;">
304                         Jumbotron Sub-title
305                         <br/><span class="label label-primary">Contact us</span>
306                     </div>
307                 </div>
308             </div>
309         </div>
310         <section class="oe_snippet_body jumbotron mt16 mb16">
311             <div class="container">
312                 <h1>Sell Online. Easily.</h1>
313                 <p>
314                     Get your online shop ready in a few clicks with OpenERP Commerce.
315                 </p>
316                 <p>
317                     <a class="btn btn-primary btn-lg" href="/website.contactus">
318                         Contact us
319                     </a>
320                 </p>
321             </div>
322         </section>
323     </div>
324
325     <div t-name="website.snippets.text-block" data-snippet-id='text-block' data-category='structure' data-selector-children='.oe_structure, [data-oe-type=html]'>
326         <div class='oe_snippet_thumbnail'>
327             <div style="position: absolute; top: 26px; left: 5px;  width: 94%;">
328                 <div style="display: block;">
329                     Text Block
330                     <div style="text-shadow: none;font-size: 9px; line-height: 9px; color: #bbb;margin-bottom: 5px;">
331                         Jumbotron Sub-title
332                     </div>
333                     <div style="text-shadow: none;font-size: 6px; line-height: 6px; text-align: left;">
334                         Organize projects around your own processes. Work
335                         on tasks and issues using the kanban view, schedule
336                         tasks using the gantt chart and control deadlines
337                         in the calendar view. Every project may have it's
338                         own stages allowing teams to optimize their job.
339                     </div>
340                 </div>
341             </div>
342         </div>
343         <section class="oe_snippet_body mt16 mb16">
344             <div class="container">
345                 <div class="row">
346                     <div class="col-md-12 text-center mt16 mb32">
347                         <h2>
348                             OpenERP Project Management
349                         </h2>
350                         <h3 class="text-muted">Infinitely flexible. Incredibly easy to use.</h3>
351                     </div>
352                     <div class="col-md-12 mb16 mt16">
353                         <p>
354                             OpenERP's <b>collaborative and realtime</b> project
355                             management helps your team get work done. Keep
356                             track of everything, from the big picture to the
357                             minute details, from the customer contract to the
358                             billing.
359                         </p><p>
360                             Organize projects around <b>your own processes</b>. Work
361                             on tasks and issues using the kanban view, schedule
362                             tasks using the gantt chart and control deadlines
363                             in the calendar view. Every project may have it's
364                             own stages allowing teams to optimize their job.
365                         </p>
366                     </div>
367                 </div>
368             </div>
369         </section>
370     </div>
371
372     <div t-name="website.snippets.title" data-snippet-id='title' data-category='structure' data-selector-children='.oe_structure, [data-oe-type=html]'>
373         <div class="oe_snippet_thumbnail">Title</div>
374         <section class="oe_snippet_body">
375             <div class="container">
376                 <div class="row">
377                     <div class="col-md-12">
378                         <h1 class="text-center">Your Website Title</h1>
379                         <h3 class="text-muted text-center">Great products for great people</h3>
380                     </div>
381                 </div>
382             </div>
383         </section>
384     </div>
385
386     <div t-name="website.snippets.hr" data-snippet-id='hr' data-category='structure' data-selector-children='.oe_structure, [data-oe-type=html]'>
387         <div class="oe_snippet_thumbnail">
388             <hr style="position: absolute;top: 61px;margin: 0;width: 100%;border-color: #888;"/>
389             <div style="position: absolute;width: 100%;top: 51px;">Separator</div>
390         </div>
391         <hr class="oe_snippet_body"/>
392     </div>
393
394
395     <div t-name="website.snippets.big-picture" data-snippet-id='big-picture' data-category='structure' data-selector-children='.oe_structure, [data-oe-type=html]'>
396         <div class='oe_snippet_thumbnail'>
397             <div style="position: absolute; top: 8px; left: 5px;  width: 94%;">
398                 <div style="display: block;">
399                     Big Picture
400                     <img src="/website/static/src/img/big_picture.png" style="max-width: 100%"/>
401                     <div style="text-shadow: none;font-size: 6px; line-height: 6px; margin: 5px 10px">
402                         OpenERP's Point of Sale introduces a super clean
403                         interface with no installation required.
404                     </div>
405                 </div>
406             </div>
407
408         </div>
409         <section class="oe_snippet_body dark mt16 mb16">
410             <div class="container">
411                 <div class="row">
412                     <div class="col-md-12 text-center mt32 mb32">
413                         <h2>Work with the hardware you already have...</h2>
414                     </div>
415                     <div class="col-md-12">
416                         <img class="img-responsive" src="/website/static/src/img/big_picture.png" style="margin: 0 auto;"/>
417                     </div>
418                     <div class="col-md-6 col-md-offset-3 mb16 mt16">
419                         <p class="text-center">
420                             <b>No installation required</b>
421                         </p>
422                         <p class="text-center">
423                             OpenERP's Point of Sale introduces a super clean
424                             interface with no installation required that runs
425                             online and offline on modern hardware. Laptops,
426                             tablets, industrial POS, it runs on everything.
427                         </p>
428                         <p class="text-center">
429                             <a href="/page/website.contactus">Get more information Â»</a>
430                         </p>
431                     </div>
432                 </div>
433             </div>
434         </section>
435     </div>
436
437     <div t-name="website.snippets.three-columns" data-snippet-id='three-columns' data-category='structure' data-selector-children='.oe_structure, [data-oe-type=html]'>
438         <div class="oe_snippet_thumbnail">
439             <div style="padding-top: 22px;">
440                 Three Columns
441                 <div class="clearfix" style="font-size: 6px;text-shadow: none;">
442                     <div class="pull-left" style="width: 33%;line-height: 6px;">
443                         <img src="/website/static/src/img/china_thumb.jpg" style="max-width: 90%;"/>
444                         Post job offers and keep track of each application received.
445                     </div>
446                     <div class="pull-left" style="width: 33%;line-height: 6px;">
447                         <img src="/website/static/src/img/desert_thumb.jpg" style="max-width: 90%;"/>
448                         Break down information silos. Share knowledge and best practices amongst all employees.
449                     </div>
450                     <div class="pull-left" style="width: 33%; line-height: 6px;">
451                         <img src="/website/static/src/img/deers_thumb.jpg" style="max-width: 90%;"/>
452                         The agenda of each employee is updated accordingly.
453                     </div>
454                 </div>
455             </div>
456         </div>
457         <section class="oe_snippet_body mt16 mb16">
458             <div class="container">
459                 <div class="row">
460                     <div class="col-md-12 text-center mt16 mb16">
461                         <h2>OpenERP HR Features</h2>
462                         <h3 class="text-muted">Manage your company most important asset: People</h3>
463                     </div>
464                     <div class="col-md-4">
465                         <img class="img-rounded img-responsive" src="/website/static/src/img/china_thumb.jpg"/>
466                         <h4 class="mt16">Streamline Recruitments</h4>
467                         <p>
468                             Post job offers and keep track of each application
469                             received. Follow applicants in your recruitment process
470                             with the smart kanban view.
471                         </p><p>
472                             Save time by automating some communications with email
473                             templates. Resumes are indexed automatically, allowing
474                             you to easily find for specific profiles.
475                         </p>
476                     </div>
477                     <div class="col-md-4">
478                         <img class="img-rounded img-responsive" src="/website/static/src/img/desert_thumb.jpg"/>
479                         <h4 class="mt16">Enterprise Social Network</h4>
480                         <p>
481                             Break down information silos. Share knowledge and best
482                             practices amongst all employees. Follow specific people
483                             or documents and join groups of interests to share
484                             expertise and documents.
485                         </p><p>
486                             Interact with your collegues in real time with live chat.
487                         </p>
488                     </div>
489                     <div class="col-md-4">
490                         <img class="img-rounded img-responsive" src="/website/static/src/img/deers_thumb.jpg"/>
491                         <h4 class="mt16">Leaves Management</h4>
492                         <p>
493                             Keep track of the vacation days accrued by each
494                             employee. Employees enter their requests (paid
495                             holidays, sick leave, etc), for managers to approve and
496                             validate. It's all done in just a few clicks. The
497                             agenda of each employee is updated accordingly.
498                         </p>
499                     </div>
500                 </div>
501             </div>
502         </section>
503     </div>
504
505     <div t-name="website.snippets.portfolio" data-snippet-id='portfolio' data-category='business' data-selector-children='.oe_structure, [data-oe-type=html]'>
506         <div class='oe_snippet_thumbnail'>Portfolio</div>
507         <section class="oe_snippet_body">
508             <div class="container">
509                 <div class="row">
510                     <div class="col-md-12 text-center mt16 mb32">
511                         <h2>Our Porfolio</h2>
512                         <h4 class="text-muted">More than 500 successful projects</h4>
513                     </div>
514                     <div class="col-md-4">
515                         <img class="img-thumbnail img-responsive" src="/website/static/src/img/deers.jpg"/>
516                         <img class="img-thumbnail img-responsive" src="/website/static/src/img/desert.jpg"/>
517                         <img class="img-thumbnail img-responsive" src="/website/static/src/img/china.jpg"/>
518                     </div>
519                     <div class="col-md-4">
520                         <img class="img-thumbnail img-responsive" src="/website/static/src/img/desert.jpg"/>
521                         <img class="img-thumbnail img-responsive" src="/website/static/src/img/china.jpg"/>
522                         <img class="img-thumbnail img-responsive" src="/website/static/src/img/deers.jpg"/>
523                     </div>
524                     <div class="col-md-4">
525                         <img class="img-thumbnail img-responsive" src="/website/static/src/img/landscape.jpg"/>
526                         <img class="img-thumbnail img-responsive" src="/website/static/src/img/china.jpg"/>
527                         <img class="img-thumbnail img-responsive" src="/website/static/src/img/desert.jpg"/>
528                     </div>
529                 </div>
530             </div>
531         </section>
532     </div>
533
534     <div t-name="website.snippets.image-gallery" data-snippet-id='image-gallery' data-category='business' data-selector-children='.oe_structure, [data-oe-type=html]'>
535         <div class='oe_snippet_thumbnail'>
536             <div style="padding-top: 22px;">
537                 Image Gallery
538                 <div class="clearfix">
539                     <div style="float: right; width: 56px;height: 30px;">
540                         <img src="/website/static/src/img/china_thumb.jpg" style="max-width: 24px;"/>
541                         <img src="/website/static/src/img/deers_thumb.jpg" style="max-width: 24px;"/>
542                         <img src="/website/static/src/img/desert_thumb.jpg" style="max-width: 24px;"/>
543                         <img src="/website/static/src/img/china_thumb.jpg" style="max-width: 24px;"/>
544                     </div>
545                     <img src="/website/static/src/img/desert.jpg" style="float-left; width: 50px;height: 31px;margin-top: 4px;"/>
546                     <img src="/website/static/src/img/deers_thumb.jpg" style="float-left; max-width: 24px;"/>
547                     <img src="/website/static/src/img/landscape.jpg" style="float-left; max-width: 50px;"/>
548                     <img src="/website/static/src/img/china_thumb.jpg" style="max-width: 24px;"/>
549                 </div>
550             </div>
551         </div>
552         <section class="oe_snippet_body">
553             <div class="container">
554                 <div class="row">
555                     <div class="col-md-12 text-center mt16 mb32">
556                         <h2>Our Customer References</h2>
557                         <h4 class="text-muted">More than 500 successful projects</h4>
558                     </div>
559                     <div class="col-md-6">
560                         <img class="img-thumbnail img-responsive mb16" src="/website/static/src/img/desert.jpg"/>
561                     </div>
562                     <div class="col-md-3">
563                         <img class="img-thumbnail img-responsive mb16" src="/website/static/src/img/china_thumb.jpg"/>
564                     </div>
565                     <div class="col-md-3">
566                         <img class="img-thumbnail img-responsive mb16" src="/website/static/src/img/deers_thumb.jpg"/>
567                     </div>
568                     <div class="col-md-3">
569                         <img class="img-thumbnail img-responsive mb16" src="/website/static/src/img/desert_thumb.jpg"/>
570                     </div>
571                     <div class="col-md-3">
572                         <img class="img-thumbnail img-responsive mb16" src="/website/static/src/img/china_thumb.jpg"/>
573                     </div>
574                     <div class="col-md-3">
575                         <img class="img-thumbnail img-responsive mb16" src="/website/static/src/img/deers_thumb.jpg"/>
576                     </div>
577                     <div class="col-md-6">
578                         <img class="img-thumbnail img-responsive mb16" src="/website/static/src/img/landscape.jpg"/>
579                     </div>
580                     <div class="col-md-3">
581                         <img class="img-thumbnail img-responsive mb16" src="/website/static/src/img/china_thumb.jpg"/>
582                     </div>
583                 </div>
584             </div>
585         </section>
586     </div>
587
588     <div t-name="website.snippets.pricing" data-snippet-id='pricing' data-category='business' data-selector-children='.oe_structure, [data-oe-type=html]'>
589         <div class='oe_snippet_thumbnail'>Comparisons</div>
590         <section class="oe_snippet_body">
591             <div class="container">
592               <div class="row">
593                 <div class="col-md-12 text-center mt16 mb32">
594                     <h2>Our Offers</h2>
595                 </div>
596
597                 <div class="col-md-4">
598                     <div class="panel panel-info">
599                       <!-- Default panel contents -->
600                       <div class="panel-heading text-center">
601                           <h2 style="margin: 0">Beginner</h2>
602                           <p style="margin: 0" class="text-muted">
603                               Starter package
604                           </p>
605                       </div>
606                       <div class="panel-body text-center text-muted" style="background-color: rgba(0,0,0,0.1)">
607                         <h2 style="margin: 0"><span>$</span><b style="font-size: 60px">450</b><small>.00</small></h2>
608                         <div>per month</div>
609                       </div>
610
611                       <!-- List group -->
612                       <ul class="list-group">
613                         <li class="list-group-item">Battery: 8 hours</li>
614                         <li class="list-group-item">Screen: 2.5 inch</li>
615                         <li class="list-group-item">Weight: 1.1 ounces</li>
616                         <li class="list-group-item">No support</li>
617                       </ul>
618                       <div class="panel-footer text-center">
619                           <p class="text-muted">
620                               <i>Free shipping, satisfied or reimbursed.</i>
621                           </p>
622                           <a href="/page/website.contactus" class="btn btn-primary btn-lg">Order now</a>
623                       </div>
624                     </div>
625                 </div>
626                 <div class="col-md-4">
627                     <div class="panel panel-primary">
628                       <!-- Default panel contents -->
629                       <div class="panel-heading text-center">
630                           <h2 style="margin: 0">Professional</h2>
631                           <p style="margin: 0">
632                               Enterprise package
633                           </p>
634                       </div>
635                       <div class="panel-body text-center text-muted" style="background-color: rgba(0,0,0,0.1)">
636                         <h2 style="margin: 0"><span>$</span><b style="font-size: 60px">590</b><small>.00</small></h2>
637                         <div>per month</div>
638                       </div>
639
640                       <!-- List group -->
641                       <ul class="list-group">
642                         <li class="list-group-item">Battery: 12 hours</li>
643                         <li class="list-group-item">Screen: 2.8 inch</li>
644                         <li class="list-group-item">Weight: 1.2 ounces</li>
645                         <li class="list-group-item">Limited support</li>
646                       </ul>
647                       <div class="panel-footer text-center">
648                           <p class="text-muted">
649                               <i>Free shipping, satisfied or reimbursed.</i>
650                           </p>
651                           <a href="/page/website.contactus" class="btn btn-primary btn-lg">Order now</a>
652                       </div>
653                     </div>
654                 </div>
655                 <div class="col-md-4">
656                     <div class="panel panel-info">
657                       <!-- Default panel contents -->
658                       <div class="panel-heading text-center">
659                           <h2 style="margin: 0">Expert</h2>
660                           <p style="margin: 0" class="text-muted">
661                               The top of the top
662                           </p>
663                       </div>
664                       <div class="panel-body text-center text-muted" style="background-color: rgba(0,0,0,0.1)">
665                         <h2 style="margin: 0"><span>$</span><b style="font-size: 60px">890</b><small>.00</small></h2>
666                         <div>per month</div>
667                       </div>
668
669                       <!-- List group -->
670                       <ul class="list-group">
671                         <li class="list-group-item">Battery: 20 hours</li>
672                         <li class="list-group-item">Screen: 2.8 inch</li>
673                         <li class="list-group-item">Weight: 1.2 ounces</li>
674                         <li class="list-group-item">Unlimited support</li>
675                       </ul>
676                       <div class="panel-footer text-center">
677                           <p class="text-muted">
678                               <i>Free shipping, satisfied or reimbursed.</i>
679                           </p>
680                           <a href="/page/website.contactus" class="btn btn-primary btn-lg">Contact us</a>
681                       </div>
682                     </div>
683
684                 </div>
685               </div>
686             </div>
687         </section>
688     </div>
689
690     <div t-name="website.snippets.cta" data-snippet-id='cta' data-category='business' data-selector-children='.oe_structure, [data-oe-type=html]'>
691         <div class='oe_snippet_thumbnail'>Buttons</div>
692         <section class="oe_snippet_body dark">
693             <div class="container">
694               <div class="row">
695                 <div class="col-md-12 text-center mt16 mb16">
696                     <a href="/shop" class="btn btn-info btn-lg">View Products</a>
697                     <a href="/page/website.contactus" class="btn btn-primary btn-lg">Contact us</a>
698                 </div>
699               </div>
700             </div>
701         </section>
702     </div>
703
704     <div t-name="website.snippets.faq" data-snippet-id='faq' data-category='business' data-selector-children='.oe_structure, [data-oe-type=html]'>
705         <div class='oe_snippet_thumbnail'>FAQ</div>
706         <section class="oe_snippet_body">
707             <div class="container">
708                 <h2 class="page-header">
709                     Point of Sale Questions <small>v7</small>
710                 </h2>
711                 <h3>
712                     Which hardware does OpenERP POS support?
713                 </h3>
714                 <p>
715                     OpenERP's POS is a web application that can run on any device that
716                     can display websites with little to no setup required.
717                 </p><p>
718                     The Point of Sale works perfectly on any kind of touch enabled
719                     device, whether it's multi-touch tablets like an iPad or
720                     keyboardless resistive touchscreen terminals.
721                 </p>
722                 <h3>
723                     Does it works offline?
724                 </h3>
725                 <p>
726                     Deploy new stores with just an internet connection: no
727                     installation, no specific hardware required. It works with any
728                     iPad, Tablet PC, laptop or industrial POS machine.
729                 </p><p>
730                     While an internet connection is required to start the Point of
731                     Sale, it will stay operational even after a complete disconnection.
732                 </p>
733
734                 <h2 class="page-header">
735                     Project Management Questions <small>v7</small>
736                 </h2>
737                 <h3>
738                     Can I use it to manage projects based on agile methodologies?
739                 </h3>
740                 <p>
741                     Yes.
742                 </p>
743             </div>
744         </section>
745     </div>
746
747     <div t-name="website.snippets.references" data-snippet-id='references' data-category='business' data-selector-children='.oe_structure, [data-oe-type=html]'>
748         <div class='oe_snippet_thumbnail'>References</div>
749         <section class="oe_snippet_body mb32 mt16">
750             <div class="container">
751                 <div class="row">
752                     <div class="col-md-12">
753                         <h1 class="text-center">
754                             Our References
755                         </h1>
756                         <h3 class="text-muted text-center">
757                             More than 500 happy customers.
758                         </h3>
759                     </div>
760                     <div class="col-md-4 col-md-offset-1 mt16 mb32">
761                         <blockquote data-snippet-id="quote">
762                             <p>
763                                 OpenERP provides essential platform for our project management.
764                                 Things are better organized and more visible with it.
765                             </p>
766                             <small>John Doe, CEO</small>
767                         </blockquote>
768                     </div>
769                     <div class="col-md-4 col-md-offset-2 mt16 mb32">
770                         <blockquote data-snippet-id="quote">
771                             <p>
772                                 OpenERP provides essential platform for our project management.
773                                 Things are better organized and more visible with it.
774                             </p>
775                             <small>John Doe, CEO</small>
776                         </blockquote>
777                     </div>
778                     <div class="col-md-2 col-md-offset-1">
779                         <img src="/website/static/src/img/openerp_logo.png" class="img-responsive img-thumbnail"/>
780                     </div>
781                     <div class="col-md-2">
782                         <img src="/website/static/src/img/openerp_logo.png" class="img-responsive img-thumbnail"/>
783                     </div>
784                     <div class="col-md-2">
785                         <img src="/website/static/src/img/openerp_logo.png" class="img-responsive img-thumbnail"/>
786                     </div>
787                     <div class="col-md-2">
788                         <img src="/website/static/src/img/openerp_logo.png" class="img-responsive img-thumbnail"/>
789                     </div>
790                     <div class="col-md-2">
791                         <img src="/website/static/src/img/openerp_logo.png" class="img-responsive img-thumbnail"/>
792                     </div>
793                 </div>
794             </div>
795         </section>
796     </div>
797
798     <div t-name="website.snippets.parallax" data-snippet-id='parallax' data-category='effect' data-selector-children='.oe_structure, [data-oe-type=html]'>
799         <div class='oe_snippet_thumbnail'>Parallax</div>
800
801         <li class="oe_snippet_options dropdown-submenu">
802             <a tabindex="-1" href="#">Background</a>
803             <ul class="dropdown-menu" name="parallax-background">
804                 <li data-value="/website/static/src/img/parallax/parallax_bg.jpg"><a>Parallax</a></li>
805                 <li data-value="/website/static/src/img/banner/aqua.jpg"><a>Aqua</a></li>
806                 <li data-value="/website/static/src/img/banner/baby_blue.jpg"><a>Baby Blue</a></li>
807                 <li data-value="/website/static/src/img/banner/black.jpg"><a>Black</a></li>
808                 <li data-value="/website/static/src/img/banner/color_splash.jpg"><a>Color Splash</a></li>
809                 <li data-value="/website/static/src/img/banner/greenfields.jpg"><a>Greenfields</a></li>
810                 <li data-value="/website/static/src/img/banner/landscape.jpg"><a>Landscape</a></li>
811                 <li data-value="/website/static/src/img/banner/mango.jpg"><a>Mango</a></li>
812                 <li data-value="/website/static/src/img/banner/flower.jpg"><a>Purple</a></li>
813                 <li class="oe_custom_bg"><b></b></li>
814             </ul>
815         </li>
816
817         <section class="oe_snippet_body parallax_full oe_structure" style="background-image: url(/website/static/src/img/parallax/parallax_bg.jpg)">
818             <div class="container">
819                 <div class="row">
820                     <div class="col-md-12 mt128 mb32">
821                         <h1 class="text-center">
822                             <b>OpenERP Events Management</b>
823                         </h1>
824                         <h3 class="text-center">
825                             Sell tickets online with the Event app
826                         </h3>
827                     </div>
828                 </div>
829             </div>
830         </section>
831     </div>
832
833
834 </templates>