mirror of
https://git.anonymousland.org/anonymousland/anonymousland.git
synced 2024-10-01 11:49:49 -04:00
26 lines
788 B
HTML
26 lines
788 B
HTML
|
|
||
|
{% if site.github_username != null %}
|
||
|
<a href="https://github.com/{{site.github_username}}" target="_blank">
|
||
|
<i class="fa fa-github fa-3x"></i>
|
||
|
</a>
|
||
|
{% endif %}
|
||
|
{% if site.email != null %}
|
||
|
<a href="mailto:{{site.email}}">
|
||
|
<i class="fa fa-envelope fa-3x"></i>
|
||
|
</a>
|
||
|
{% endif %}
|
||
|
{% if site.facebook_username != null %}
|
||
|
<a href="https://www.facebook.com/{{site.facebook_username}}" target="_blank">
|
||
|
<i class="fa fa-facebook fa-3x"></i>
|
||
|
</a>
|
||
|
{% endif %}
|
||
|
{% if site.twitter_username != null %}
|
||
|
<a href="https://twitter.com/{{site.twitter_username}}" target="_blank">
|
||
|
<i class="fa fa-twitter fa-3x"></i>
|
||
|
</a>
|
||
|
{% endif %}
|
||
|
{% if site.linkedin_id != null %}
|
||
|
<a href="https://www.linkedin.com/in/{{site.linkedin_id}}" target="_blank">
|
||
|
<i class="fa fa-linkedin fa-3x"></i>
|
||
|
</a>
|
||
|
{% endif %}
|