2016-08-07 01:42:15 +02:00
|
|
|
<!-- Check if any share-links are active -->
|
|
|
|
{% assign any-share-links = false %}
|
|
|
|
{% for links in site.share-links-active %}
|
|
|
|
{% if links[1] == true %}
|
|
|
|
{% assign any-share-links = true %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% if any-share-links %}
|
|
|
|
<section id = "social-share-section">
|
2017-03-30 19:01:15 +02:00
|
|
|
<span class="sr-only">Share: </span>
|
2016-08-01 03:30:03 +02:00
|
|
|
|
|
|
|
{% if site.share-links-active.twitter %}
|
2019-06-21 09:48:52 +02:00
|
|
|
<a href="https://twitter.com/intent/tweet?text={{ page.title | url_encode }}&url={{ page.url | absolute_url | url_encode }}"
|
2016-08-07 01:42:15 +02:00
|
|
|
class="btn btn-social-icon btn-twitter" title="Share on Twitter">
|
2020-03-16 19:36:28 +01:00
|
|
|
<span class="fab fa-fw fa-twitter" aria-hidden="true"></span>
|
2017-03-30 19:01:15 +02:00
|
|
|
<span class="sr-only">Twitter</span>
|
2016-08-01 03:30:03 +02:00
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.share-links-active.facebook %}
|
2019-06-21 09:48:52 +02:00
|
|
|
<a href="https://www.facebook.com/sharer/sharer.php?u={{ page.url | absolute_url | url_encode }}"
|
2016-08-07 01:42:15 +02:00
|
|
|
class="btn btn-social-icon btn-facebook" title="Share on Facebook">
|
2020-03-16 19:36:28 +01:00
|
|
|
<span class="fab fa-fw fa-facebook" aria-hidden="true"></span>
|
2017-03-30 19:01:15 +02:00
|
|
|
<span class="sr-only">Facebook</span>
|
2016-08-01 03:30:03 +02:00
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.share-links-active.linkedin %}
|
2019-06-21 09:48:52 +02:00
|
|
|
<a href="https://www.linkedin.com/shareArticle?mini=true&url={{ page.url | absolute_url | url_encode }}"
|
2016-08-07 01:42:15 +02:00
|
|
|
class="btn btn-social-icon btn-linkedin" title="Share on LinkedIn">
|
2020-03-16 19:36:28 +01:00
|
|
|
<span class="fab fa-fw fa-linkedin" aria-hidden="true"></span>
|
2017-03-30 19:01:15 +02:00
|
|
|
<span class="sr-only">LinkedIn</span>
|
2016-08-01 03:30:03 +02:00
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
|
2020-06-12 04:53:39 +02:00
|
|
|
{% if site.share-links-active.vk %}
|
|
|
|
<a href="https://vk.com/share.php?url={{ page.url | absolute_url | url_encode }}"
|
|
|
|
class="btn btn-social-icon btn-vk" title="Share on VK">
|
|
|
|
<span class="fab fa-fw fa-vk" aria-hidden="true"></span>
|
|
|
|
<span class="sr-only">VK</span>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
|
2016-08-01 03:30:03 +02:00
|
|
|
</section>
|
2016-08-07 01:42:15 +02:00
|
|
|
|
2016-10-09 00:30:31 +02:00
|
|
|
{% endif %}
|