This is a Jekyll plugin that adds a Liquid tag to inject share buttons into your blog.
The share buttons are HTML-only and trigger no JavaScript, so they won't track your blog's on behalf of Facebook, Twitter, Reddit or whoever else.
The injected HTML and CSS is simple and easy to customize or extend.
See it in action on https://netflux.io.
Add jekyll-stealthy-share
to your blog's Gemfile:
group :jekyll_plugins do
gem 'jekyll-stealthy-share', git: 'https://github.com/rfwatson/jekyll-stealthy-share.git'
end
And add it to your _config.yml
:
plugins:
- jekyll-stealthy-share
Somewhere in your layout (for example _includes/head.html
), include the share button CSS:
{% stealthy_share_assets %}
To inject the share buttons into your post, use this tag:
{% stealthy_share_buttons %}
To re-order or remove buttons, you can pass arguments to the liquid tag. For example:
{% stealthy_share_buttons: facebook, twitter, reddit %}
It's also possible to add new templates of your own. If a directory _includes/share_buttons
exists in your site's root folder, jekyll-stealthy-share
will read templates from this location instead.
See the _includes
directory for an idea of the expected layout of each template. Additionally, you could choose to not include {% stealthy_share_assets %}
and write your own custom CSS.
Welcome.
The share button SVG templates, colours and some styling are all from http://sharingbuttons.io/.
MIT
rfwatson via GitHub