Itch.io social link (#788)

This commit is contained in:
Emaleth 2021-03-11 23:33:59 +01:00 committed by GitHub
parent 76cd649799
commit 7248ed9911
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View File

@ -9,6 +9,7 @@
- Added support for Patreon and Medium in the social network links in the footer (#783) - Added support for Patreon and Medium in the social network links in the footer (#783)
- Fixed bug where special characters in the title led to broken share tags (#744) - Fixed bug where special characters in the title led to broken share tags (#744)
- Updated staticman from using v2 (public servers) to v3 (private servers) due to the public servers becoming obsolete (#775) - Updated staticman from using v2 (public servers) to v3 (private servers) due to the public servers becoming obsolete (#775)
- Added support for Itch.io in the social network links in the footer (#788)
## v5.0.0 (2020-09-15) ## v5.0.0 (2020-09-15)

View File

@ -276,7 +276,7 @@
</li> </li>
{%- endif -%} {%- endif -%}
{%- if site.social-network-links.medium -%} {%- if site.social-network-links.medium -%}
<li class="list-inline-item"> <li class="list-inline-item">
<a href="https://medium.com/@{{ site.social-network-links.medium }}" title="Medium"> <a href="https://medium.com/@{{ site.social-network-links.medium }}" title="Medium">
<span class="fa-stack fa-lg" aria-hidden="true"> <span class="fa-stack fa-lg" aria-hidden="true">
@ -288,4 +288,16 @@
</li> </li>
{%- endif -%} {%- endif -%}
{%- if site.social-network-links.itchio -%}
<li class="list-inline-item">
<a href="https://{{ site.social-network-links.itchio }}.itch.io/" title="Itchio">
<span class="fa-stack fa-lg" aria-hidden="true">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-itch-io fa-stack-1x fa-inverse"></i>
</span>
<span class="sr-only">Itchio</span>
</a>
</li>
{%- endif -%}
</ul> </ul>