- 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.

167 lines
9.0 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="theme_footer" inherit_id="website.footer_custom">
  4. <xpath expr="//div[@id='footer']" position="replace">
  5. <div id="footer" class="oe_structure oe_structure_solo">
  6. <section class="s_text_block pt64 pb32">
  7. <div class="container">
  8. <div class="row">
  9. <div class="col-lg-4 col-sm-12">
  10. <div class="footer-widget">
  11. <!-- Brand -->
  12. <a href="/" class="logo">
  13. <span t-field="website.logo" class="" t-options="{'widget': 'image'}" role="img"
  14. t-att-aria-label="'Logo of %s' % website.name"
  15. t-att-title="website.name"/>
  16. </a>
  17. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
  18. incididunt ut labore et dolore magna aliqua.
  19. </p>
  20. <div>
  21. <t t-call="website.language_selector"/>
  22. </div>
  23. </div>
  24. </div>
  25. <div class="col-lg-3 ml-lg-auto col-sm-12">
  26. <div class="footer-widget">
  27. <h3>Account</h3>
  28. <!-- Links -->
  29. <ul class="footer-links ">
  30. <li>
  31. <a href="#">
  32. Terms and conditions
  33. </a>
  34. </li>
  35. <li>
  36. <a href="#">
  37. Privacy policy
  38. </a>
  39. </li>
  40. <li>
  41. <a href="#">
  42. Affiliate services
  43. </a>
  44. </li>
  45. <li>
  46. <a href="#">
  47. Help and support
  48. </a>
  49. </li>
  50. <li>
  51. <a href="#">
  52. Frequently Asked Question
  53. </a>
  54. </li>
  55. </ul>
  56. </div>
  57. </div>
  58. <div class="col-lg-2 col-sm-6">
  59. <div class="footer-widget">
  60. <h3>About</h3>
  61. <!-- Links -->
  62. <ul class="footer-links ">
  63. <li>
  64. <a href="#">
  65. Services
  66. </a>
  67. </li>
  68. <li>
  69. <a href="#">
  70. About Us
  71. </a>
  72. </li>
  73. <li>
  74. <a href="#">
  75. Pricing
  76. </a>
  77. </li>
  78. <li>
  79. <a href="#">
  80. Products Shop
  81. </a>
  82. </li>
  83. <li>
  84. <a href="#">
  85. Contact
  86. </a>
  87. </li>
  88. </ul>
  89. </div>
  90. </div>
  91. <div class="col-lg-2 col-sm-6">
  92. <div class="footer-widget">
  93. <h3>Socials</h3>
  94. <!-- Links -->
  95. <ul class="list-unstyled footer-links">
  96. <li t-if="website.social_facebook">
  97. <a t-att-href="website.social_facebook" target="_blank"
  98. class="btn btn-sm btn-link">
  99. <span class="fa fa-facebook-square"/>Facebook
  100. </a>
  101. </li>
  102. <li t-if="website.social_twitter">
  103. <a t-att-href="website.social_twitter" target="_blank"
  104. class="btn btn-sm btn-link">
  105. <span class="fa fa-twitter"/>Twitter
  106. </a>
  107. </li>
  108. <li t-if="website.social_linkedin">
  109. <a t-att-href="website.social_linkedin" target="_blank"
  110. class="btn btn-sm btn-link">
  111. <span class="fa fa-linkedin"/>Linkedin
  112. </a>
  113. </li>
  114. <li t-if="website.social_youtube">
  115. <a t-att-href="website.social_youtube" target="_blank"
  116. class="btn btn-sm btn-link">
  117. <span class="fa fa-youtube-play"/>Youtube
  118. </a>
  119. </li>
  120. <li t-if="website.social_github">
  121. <a t-att-href="website.social_github" target="_blank"
  122. class="btn btn-sm btn-link">
  123. <span class="fa fa-github"/>Github
  124. </a>
  125. </li>
  126. <li t-if="website.social_instagram">
  127. <a t-att-href="website.social_instagram" target="_blank"
  128. class="btn btn-sm btn-link">
  129. <span class="fa fa-instagram"/>Instagram
  130. </a>
  131. </li>
  132. </ul>
  133. </div>
  134. </div>
  135. </div>
  136. </div>
  137. </section>
  138. </div>
  139. <!-- Page Scroll to Top -->
  140. <a class="scroll-to-top js-scroll-trigger" href="#top">
  141. <i class="fa fa-angle-up"></i>
  142. </a>
  143. <section class="py-2">
  144. <div class="container">
  145. <div class="row text-right pt-5">
  146. <div class="col-lg-12">
  147. <!-- Copyright -->
  148. <p class="footer-copy ">
  149. Copyright &amp;copy; <span t-field="res_company.name" itemprop="name">Company name
  150. </span> All rights reserved.
  151. </p>
  152. </div>
  153. </div>
  154. <!-- / .row -->
  155. </div>
  156. </section>
  157. </xpath>
  158. </template>
  159. <template id="theme_brand_promotion" inherit_id="website.brand_promotion">
  160. <xpath expr="//div[hasclass('o_brand_promotion')]" position="replace"></xpath>
  161. </template>
  162. <template id="theme_frontend_footer" inherit_id="web.frontend_layout">
  163. <xpath expr="//div[hasclass('o_footer_copyright')]" position="replace"></xpath>
  164. </template>
  165. </odoo>