diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/master.html | 4 | ||||
-rw-r--r-- | _layouts/post.html | 17 |
2 files changed, 14 insertions, 7 deletions
diff --git a/_layouts/master.html b/_layouts/master.html index a39a096..74ccd11 100644 --- a/_layouts/master.html +++ b/_layouts/master.html @@ -47,7 +47,9 @@ {% else %} <meta property="og:image" content="http://www.benburwell.com/assets/images/icons/benburwell.png"> {% endif %} - <meta property="og:type" content="website"> + <meta property="og:type" content="article"> + <meta property="og:url" content="http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}"> + <meta property="article:author" content="Ben Burwell"> <meta property="fb:admins" content="1439777397"> <!-- Twitter Meta --> diff --git a/_layouts/post.html b/_layouts/post.html index a1d3039..4f7f982 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -9,17 +9,22 @@ layout: master <div class="social-buttons"> <!-- Twitter --> - <a href="https://twitter.com/intent/tweet?url=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}&text={{ page.title }}" onclick="javascript:window.open(this.href, - '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><img src="/assets/images/icons/social/twitter.png" alt="Tweet"></a> + <a href="https://twitter.com/intent/tweet?url=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}&text={{ page.title }}" onclick="window.open(this.href, + '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><span class="icon-twitter"></span></a> <!-- Facebook --> - <a href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}" onclick="javascript:window.open(this.href, - '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><img src="/assets/images/icons/social/facebook.png" alt="Share on Facebook"></a> + <a href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}" onclick="window.open(this.href, + '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><span class="icon-facebook"></span></a> <!-- Google Plus --> - <a href="https://plus.google.com/share?url=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}" onclick="javascript:window.open(this.href, - '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><img src="/assets/images/icons/social/gplus.png" alt="Share on Google+"></a> + <a href="https://plus.google.com/share?url=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}" onclick="window.open(this.href, + '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><span class="icon-googleplus"></span></a> + <!-- Tumblr --> + <a href="https://tumblr.com/share/" onclick="window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><span class="icon-tumblr"></span></a> + + <!-- Pinterest --> + <a href="https://www.pinterest.com/pin/create/link/?url=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}" onclick="window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><span class="icon-pinterest"></span></a> </div> <div class="date">{{ page.date | date: "%A, %-d %B %Y" }}</div> |