- Repo for opensource odoo website theme (since V13.0)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
3.0 KiB

5 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template name="Showcase Image" id="s_showcase_image">
  4. <section class="s_showcase_image container-fluid">
  5. <div class="row">
  6. <figure class="bg-img-03 col-lg-6 bl">
  7. <figcaption class="o_animable">
  8. <h6>Sample description</h6>
  9. Write one or two paragraphs describing your product
  10. </figcaption>
  11. </figure>
  12. <div class="info col-lg-6">
  13. <div class="row" contenteditable="false">
  14. <div class="content col-md-11 col-lg-8" contenteditable="true">
  15. <h3>Sample Title</h3>
  16. <h4 class="text-primary">With a great subtitle</h4>
  17. <p>Write one or two paragraphs describing your product, services or a specific feature. To be successful your content needs to be useful to your readers.</p>
  18. <a href="#" class="btn btn-secondary">Click here</a>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. </section>
  24. </template>
  25. <template id="s_showcase_image-opt" inherit_id="website.snippet_options">
  26. <xpath expr="//div[@data-js='background']" position="before">
  27. <div data-selector=".s_showcase_image">
  28. <we-collapse-area>
  29. <we-toggler><i class="fa fa-fw fa-exchange"/> Image position</we-toggler>
  30. <we-collapse>
  31. <we-button data-select-class="">Left</we-button>
  32. <we-button data-select-class="s_right">Right</we-button>
  33. </we-collapse>
  34. </we-collapse-area>
  35. </div>
  36. <div data-selector=".s_showcase_image figure">
  37. <we-collapse-area>
  38. <we-toggler><i class="fa fa-fw fa-tag"/> Caption position</we-toggler>
  39. <we-collapse>
  40. <we-button data-select-class="tl">Top Left</we-button>
  41. <we-button data-select-class="tr">Top Right</we-button>
  42. <we-button data-select-class="bl">Bottom Left</we-button>
  43. <we-button data-select-class="">Bottom Right</we-button>
  44. </we-collapse>
  45. </we-collapse-area>
  46. </div>
  47. </xpath>
  48. <xpath expr="//div[@data-js='background']" position="attributes">
  49. <attribute name="data-selector" add=".s_showcase_image figure"/>
  50. </xpath>
  51. <xpath expr="//div[@id='so_main_colorpicker']" position="attributes">
  52. <attribute name="data-selector" add=".s_showcase_image figure, .s_showcase_image figcaption"/>
  53. </xpath>
  54. <xpath expr="//div[@data-js='background_position']" position="attributes">
  55. <attribute name="data-selector" add=".s_showcase_image figure"/>
  56. </xpath>
  57. </template>
  58. </odoo>