personal-website/_includes/social.html

15 lines
893 B
HTML

{%- if site.email -%}
<a href="mailto:{{ site.email | encode_email }}" title="email"><i class="fas fa-envelope"></i></a>
{% endif %}
{%- if site.github_username -%}
<a href="https://github.com/{{ site.github_username }}" title="GitHub"><i class="fab fa-github"></i></a>
{% endif %}
{%- if site.linkedin_username -%}
<a href="https://www.linkedin.com/in/{{ site.linkedin_username }}" title="LinkedIn"><i class="fab fa-linkedin"></i></a>
{% endif %}
{%- if site.work_url -%}
<a href="{{ site.work_url }}" title="Work"><i class="fas fa-briefcase"></i></a>
{% endif %}
{%- if site.gitlab_username -%}
<a href="https://gitlab.com/{{ site.gitlab_username }}" title="GitLab"><i class="fab fa-gitlab"></i></a>
{% endif %}