s_showcase.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="s_showcase" name="Showcase">
  4. <div class="s_showcase o_mail_snippet_general pt48 pb48">
  5. <!-- TODO: (below) issue with height: `fit-content` is not supported, can we calculate it in px in translation ?
  6. empty div height is 0 unless table has defined height (div.col-1 > div.w-50.h100.border-end)-->
  7. <div class="container" style="height: fit-content;">
  8. <div class="row g-0 s_col_no_resize s_col_no_bgcolor s_nb_column_fixed">
  9. <div class="col-lg-6 pb24" style="text-align: right; padding-right: 70px;" align="right">
  10. <div class="mb-2">
  11. <h3 class="d-inline-block">First feature</h3>
  12. <i class="fa fa-2x fa-desktop text-secondary ms-3"/>
  13. </div>
  14. <p>A short description of this great feature.</p>
  15. </div>
  16. <div class="col-lg-6 pb24 border-start" style="padding-left: 70px;" align="left">
  17. <div class="mb-2">
  18. <i class="fa fa-2x fa-heart text-secondary me-3"/>
  19. <h3 class="d-inline-block">Another feature</h3>
  20. </div>
  21. <p>A short description of this great feature.</p>
  22. </div>
  23. </div>
  24. <div class="row g-0 s_col_no_resize s_col_no_bgcolor s_nb_column_fixed">
  25. <div class="col-lg-6" style="text-align: right; padding-right: 70px;" align="right">
  26. <div class="mb-2">
  27. <h3 class="d-inline-block">Second feature</h3>
  28. <i class="fa fa-2x fa-paint-brush text-secondary ms-3"/>
  29. </div>
  30. <p>A short description of this great feature.</p>
  31. </div>
  32. <div class="col-lg-6 border-start" style="padding-left: 70px;" align="left">
  33. <div class="mb-2">
  34. <i class="fa fa-2x fa-gift text-secondary me-3"/>
  35. <h3 class="d-inline-block">Last Feature</h3>
  36. </div>
  37. <p>A short description of this great feature.</p>
  38. </div>
  39. </div>
  40. </div>
  41. <div class="container pt32" style="text-align: center;" align="center">
  42. <a href="#" class="btn btn-primary">Discover all the features</a>
  43. </div>
  44. </div>
  45. </template>
  46. </odoo>