47 lines
3.1 KiB
HTML
47 lines
3.1 KiB
HTML
<ul class="icons">
|
|
{%- if site.dribbble_username -%}
|
|
<li><a href="https://dribbble.com/{{ site.dribbble_username | cgi_escape | escape }}" class="icon fa-dribbble"><span class="label">{{ site.dribbble_username | escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- if site.facebook_username -%}
|
|
<li><a href="https://www.facebook.com/{{ site.facebook_username | cgi_escape | escape }}" class="icon fa-facebook"><span class="label">{{ site.facebook_username | escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- if site.flickr_username -%}
|
|
<li><a href="https://www.flickr.com/photos/{{ site.flickr_username | cgi_escape | escape }}" class="icon fa-flickr"><span class="label">{{ site.flickr_username | escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- if site.github_username -%}
|
|
<li><a href="https://github.com/{{ site.github_username | cgi_escape | escape }}" class="icon fa-github"><span class="label">{{ site.github_username | escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- if site.bitbucket_username -%}
|
|
<li><a href="https://bitbucket.org/{{ site.bitbucket_username | cgi_escape | escape }}" class="icon fa-bitbucket"><span class="label">{{ site.bitbucket_username | escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- if site.instagram_username -%}
|
|
<li><a href="https://www.instagram.com/{{ site.instagram_username | cgi_escape | escape }}" class="icon fa-instagram"><span class="label">{{ site.instagram_username | escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- if site.linkedin_username -%}
|
|
<li><a href="https://www.linkedin.com/in/{{ site.linkedin_username | cgi_escape | escape }}" class="icon fa-linkedin"><span class="label">{{ site.linkedin_username | escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- if site.pinterest_username -%}
|
|
<li><a href="https://www.pinterest.com/{{ site.pinterest_username | cgi_escape | escape }}" class="icon fa-pinterest"><span class="label">{{ site.pinterest_username | escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- for mst in site.mastodon -%}
|
|
{%- if mst.username and mst.instance -%}
|
|
<li><a href="https://{{ mst.instance | cgi_escape | escape}}/@{{mst.username}}" class="icon fa-mastodon"><span class="label">{{ mst.username |escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- endfor -%}
|
|
{%- if site.twitter_username -%}
|
|
<li><a href="https://twitter.com/{{ site.twitter_username | cgi_escape | escape }}" class="icon fa-twitter"><span class="label">{{ site.twitter_username | escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- if site.youtube_username -%}
|
|
<li><a href="https://www.youtube.com/{{ site.youtube_username | cgi_escape | escape }}" class="icon fa-youtube"><span class="label">{{ site.youtube_username | escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- if site.googleplus_username -%}
|
|
<li><a href="https://plus.google.com/{{ site.googleplus_username | escape }}" class="icon fa-google-plus"><span class="label">{{ site.googleplus_username | escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- if site.rss -%}
|
|
<li><a href="{{ 'feed.xml' | relative_url }}" class="icon fa-rss"><span class="label">{{ site.rss | escape }}</span></a></li>
|
|
{%- endif -%}
|
|
{%- if site.email -%}
|
|
<li><a href="mailto:{{ site.email | escape }}" class="icon fa-envelope"><span class="label">Email</span></a></li>
|
|
{%- endif -%}
|
|
</ul>
|