Add Strava social network link (#1443)

This commit is contained in:
Tim Angus 2025-03-15 05:08:27 +00:00 committed by GitHub
commit 741acb7d36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 0 deletions

View file

@ -82,6 +82,7 @@ social-network-links:
# gitlab: yourname
# itchio: yourname
# untappd: yourname
# strava: your userid
# If you want your website to generate an RSS feed, provide a description
# The URL for the feed will be https://<your_website>/feed.xml

View file

@ -395,6 +395,18 @@
</li>
{%- endif -%}
{%- if network[0] == "strava" -%}
<li class="list-inline-item">
<a href="https://www.strava.com/athletes/{{ site.social-network-links.strava}}" title="Strava">
<span class="fa-stack fa-lg" aria-hidden="true">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-strava fa-stack-1x fa-inverse"></i>
</span>
<span class="sr-only">Strava</span>
</a>
</li>
{%- endif -%}
{%- endfor -%}
</ul>