13 lines
790 B
HTML
13 lines
790 B
HTML
{% macro social_link(name, icon_name, link) %}
|
|
<a class="{{class_prefix}}--link" target="_blank" href="{{link}}">
|
|
<img class="{{class_prefix}}--link-icon" src="/img/{{icon_name}}" alt-text="{{name}}"></img>
|
|
</a>
|
|
{% endmacro %}
|
|
|
|
{{ social_link('Itch.io', 'itchio-fill.svg', 'https://frog-collective.itch.io/') }}
|
|
{{ social_link('Youtube', 'youtube-fill.svg', 'https://www.youtube.com/@FrogCoGames') }}
|
|
{{ social_link('Twitch', 'twitch-fill.svg', 'https://www.twitch.tv/frogcollective') }}
|
|
{{ social_link('Mastodon', 'mastodon-fill.svg', 'https://mastodon.social/@frogcollective') }}
|
|
{{ social_link('Twitter - X', 'twitter-x-line.svg', 'https://x.com/FrogCoGames') }}
|
|
{{ social_link('Facebook', 'facebook-circle-fill.svg', 'https://www.facebook.com/profile.php?id=61560180067337') }}
|