lbry.com/view/template/content/_postSocialShare.php
ポール ウェッブ 3094dda001 Redesign
2019-03-19 08:55:04 -05:00

21 lines
1.1 KiB
PHP

<?php $url = urlencode(Request::getHostAndProto() . $post->getRelativeUrl()) ?>
<?php $title = urlencode($post->getTitle()) ?>
<div class="social-share-buttons">
<a href="https://www.facebook.com/sharer/sharer.php?u=<?php echo $url ?>&t=<?php echo $title ?>" title="Share on Facebook">
<span class="icon-fw icon-facebook"></span>
</a>
<a href="https://twitter.com/intent/tweet?source=<?php echo $url ?>&text=<?php echo $title ?>%20<?php echo $url ?>&via=lbryio"
title="Tweet">
<span class="icon-fw icon-twitter"></span>
</a>
<a href="https://www.reddit.com/submit?url=<?php echo $url ?>&title=<?php echo $title ?>" title="Post to Reddit">
<span class="icon-fw icon-reddit"></span>
</a>
<a href="https://www.tumblr.com/share?v=3&u=<?php echo $url ?>&t=<?php echo $title ?>&s=" title="Post to Tumblr">
<span class="icon-fw icon-tumblr"></span>
</a>
<a href="mailto:?subject=<?php echo urlencode('LBRY: ') . $title ?>&body=<?php echo $url . urlencode("\n\n" . $post->getContentText(50, true)) ?>"
title="Email a Friend">
<span class="icon-fw icon-envelope"></span>
</a>
</div>