<?php
/**
* $Desc
*
* @author Gaviasthemes Team
* @copyright Copyright (C) 2020 gaviasthemes. All Rights Reserved.
* @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
*
*/
global $post;
?>
<ul class="social-networks-post clearfix">
<li class="title-share"><?php echo esc_html__( "Share This Post: ", "zilom-themer" ) ?></li>
<li class="facebook">
<a data-toggle="tooltip" data-placement="top" data-animation="true" data-original-title="Facebook" href="http://www.facebook.com/sharer.php?s=100&p[url]=<?php the_permalink(); ?>&p[title]=<?php the_title(); ?>" target="_blank">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li class="twitter">
<a data-toggle="tooltip" data-placement="top" data-animation="true" data-original-title="Twitter" href="https://twitter.com/intent/tweet?text=<?php the_title(); ?>+<?php the_permalink(); ?>" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="linkedin">
<a data-toggle="tooltip" data-placement="top" data-animation="true" data-original-title="LinkedIn" href="http://linkedin.com/shareArticle?mini=true&url=<?php the_permalink(); ?>&title=<?php the_title(); ?>" target="_blank">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li class="tumblr">
<a data-toggle="tooltip" data-placement="top" data-animation="true" data-original-title="Tumblr" href="http://www.tumblr.com/share/link?url=<?php echo urlencode(get_permalink()); ?>&name=<?php echo urlencode($post->post_title); ?>&description=<?php echo urlencode(get_the_excerpt()); ?>" target="_blank">
<i class="fab fa-tumblr"></i>
</a>
</li>
<li class="google">
<a data-toggle="tooltip" data-placement="top" data-animation="true" data-original-title="Google +1" href="https://plus.google.com/share?url=<?php the_permalink(); ?>" onclick="javascript:window.open(this.href,
'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;" target="_blank">
<i class="fab fa-google-plus-g"></i>
</a>
</li>
<li class="pinterest hidden">
<?php $full_image = wp_get_attachment_image_src(get_post_thumbnail_id(), 'full'); ?>
<a data-toggle="tooltip" data-placement="top" data-animation="true" data-original-title="Pinterest" href="http://pinterest.com/pin/create/button/?url=<?php echo urlencode(get_permalink()); ?>&description=<?php echo urlencode($post->post_title); ?>&media=<?php echo urlencode($full_image[0]); ?>" target="_blank">
<i class="fa fa-pinterest"></i>
</a>
</li>
<li class="email hidden">
<a data-toggle="tooltip" data-placement="top" data-animation="true" data-original-title="Email" href="mailto:?subject=<?php the_title(); ?>&body=<?php the_permalink(); ?>">
<i class="fa fa-envelope"></i>
</a>
</li>
</ul>