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

26 lines
1.4 KiB

5 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template name="Share Extended" id="s_share_extended" inherit_id="website.s_share">
  4. <xpath expr="//div[contains(@t-attf-class, 's_share')]" position="replace">
  5. <div class="oe_share s_share">
  6. <h4 class="s_share_title">Share
  7. <i class="text-muted fa fa-hand-o-right fa-1x"/></h4>
  8. <a target="_blank" class="oe_share_facebook" href="https://www.facebook.com/sharer/sharer.php?u={url}">
  9. <i class="rounded-circle fa fa-facebook fa-1x"/>
  10. </a>
  11. <a target="_blank" class="oe_share_twitter fa-1x" href="https://twitter.com/intent/tweet?text={title}&amp;url={url}">
  12. <i class="rounded-circle fa fa-twitter fa-1x"/>
  13. </a>
  14. <a target="_blank" class="oe_share_linkedin" href="http://www.linkedin.com/shareArticle?mini=true&amp;url={url}&amp;title={title}&amp;">
  15. <i class="rounded-circle fa fa-linkedin fa-1x"/>
  16. </a>
  17. <a target="_blank" class="oe_share_google" href="https://plus.google.com/share?url={url}">
  18. <i class="rounded-circle fa fa-google-plus fa-1x"/>
  19. </a>
  20. <a href="mailto:?body={url}&amp;subject={title}">
  21. <i class="rounded-circle fa fa-envelope fa-1x"/>
  22. </a>
  23. </div>
  24. </xpath>
  25. </template>
  26. </odoo>