Marco Blessing
6a84cef6a2
* fix(#744): Escape special characters in title (#745) * add matt artist as sponsor * Fix margin top alignment issue on Safari (#750) * Update README.md * Update README.md * Update README.md * Update README.md * Remove references to any public Staticman API instance (#775) * Update CHANGELOG.md * Adding option for Medium Social Link at footer (#784) * Itch.io social link (#788) * Update CHANGELOG.md * Add support for Cloudflare analytics (#798) * Include Reddit in share options of posts (#815) * add search to the navbar using 'post_search' config param * Update CHANGELOG.md * ui: make sure search results dont have underline until hovered * search feature: make sure page scrollbar disappears when searching but a scrollbar for search items shows if needed * update changelog Co-authored-by: Dmitry <dmitry.b.danilov@gmail.com> Co-authored-by: Dean Attali <dean@attalitech.com> Co-authored-by: Amy Troschinetz <lexicalunit@lexicalunit.com> Co-authored-by: Dean Attali <daattali@gmail.com> Co-authored-by: Vincent Tam <VincentTam@users.noreply.github.com> Co-authored-by: Diksha Verma <112dikshaverma@gmail.com> Co-authored-by: Emaleth <Emaleth@protonmail.com> Co-authored-by: Ari Kalfus <dev@artis3nal.com> Co-authored-by: Leedan <l33d4n@gmail.com> Co-authored-by: Marco Blessing <marco.blessing@komm.one>
56 lines
2.0 KiB
HTML
56 lines
2.0 KiB
HTML
<!-- 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">
|
|
<span class="sr-only">Share: </span>
|
|
|
|
{% if site.share-links-active.twitter %}
|
|
<a href="https://twitter.com/intent/tweet?text={{ page.title | url_encode }}&url={{ page.url | absolute_url | url_encode }}"
|
|
class="btn btn-social-icon btn-twitter" title="Share on Twitter">
|
|
<span class="fab fa-fw fa-twitter" aria-hidden="true"></span>
|
|
<span class="sr-only">Twitter</span>
|
|
</a>
|
|
{% endif %}
|
|
|
|
{% if site.share-links-active.facebook %}
|
|
<a href="https://www.facebook.com/sharer/sharer.php?u={{ page.url | absolute_url | url_encode }}"
|
|
class="btn btn-social-icon btn-facebook" title="Share on Facebook">
|
|
<span class="fab fa-fw fa-facebook" aria-hidden="true"></span>
|
|
<span class="sr-only">Facebook</span>
|
|
</a>
|
|
{% endif %}
|
|
|
|
{% if site.share-links-active.linkedin %}
|
|
<a href="https://www.linkedin.com/shareArticle?mini=true&url={{ page.url | absolute_url | url_encode }}"
|
|
class="btn btn-social-icon btn-linkedin" title="Share on LinkedIn">
|
|
<span class="fab fa-fw fa-linkedin" aria-hidden="true"></span>
|
|
<span class="sr-only">LinkedIn</span>
|
|
</a>
|
|
{% endif %}
|
|
|
|
{% 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 %}
|
|
|
|
{% if site.share-links-active.reddit %}
|
|
<a href="https://www.reddit.com/submit?url={{ page.url | absolute_url | url_encode }}"
|
|
class="btn btn-social-icon btn-reddit" title="Share on Reddit">
|
|
<span class="fab fa-fw fa-reddit" aria-hidden="true"></span>
|
|
<span class="sr-only">Reddit</span>
|
|
</a>
|
|
{% endif %}
|
|
|
|
</section>
|
|
|
|
{% endif %}
|