ShareBar.html 666 B

12345678910111213141516171819202122232425
  1. <div class="share-bar">
  2. <h5><f:translate key="share-on"/>: </h5>
  3. <a href="#"
  4. onclick="
  5. window.open(
  6. 'https://www.facebook.com/sharer/sharer.php?u='+encodeURIComponent(location.href),
  7. 'facebook-share-dialog',
  8. 'width=626,height=436');
  9. return false;">
  10. <i class="fa fa-facebook" style="color: #129af6"></i> Facebook
  11. </a>
  12. <a href="#"
  13. onclick="
  14. window.open(
  15. 'https://www.twitter.com/share?url='+encodeURIComponent(location.href),
  16. 'twitter-share-dialog',
  17. 'width=626,height=436');
  18. return false;">
  19. <i class="fa fa-twitter" style="color: #1da1f2"></i> Twitter
  20. </a>
  21. </div>