changed icons to fa5, removed a dependency and added CDN for FA5 and shim

This commit is contained in:
Marc Nevin
2020-04-21 22:41:43 +01:00
parent 68bdbdd241
commit 95f939f677
2 changed files with 10 additions and 7 deletions

View File

@@ -1,16 +1,19 @@
<div class="social-icons right">
{% if site.linkedin_username %}
<a class="fa fa-linkedin" href="https://www.linkedin.com/in/{{ site.linkedin_username }}" target="_blank"></a>
<a class="fab fa-linkedin" href="https://www.linkedin.com/in/{{ site.linkedin_username }}" target="_blank"></a>
{% endif %}
{% if site.github_username %}
<a class="fa fa-github" href="https://github.com/{{ site.github_username }}" target="_blank"></a>
<a class="fab fa-github" href="https://github.com/{{ site.github_username }}" target="_blank"></a>
{% endif %}
{% if site.twitter_username %}
<a class="fa fa-twitter" href="https://twitter.com/{{ site.twitter_username }}" target="_blank"></a>
<a class="fab fa-twitter" href="https://twitter.com/{{ site.twitter_username }}" target="_blank"></a>
{% endif %}
{% if site.devto_username %}
<a class="fab fa-dev" href="https://dev.to/{{ site.dev_username }}" target="_blank"></a>
{% endif %}
{% if site.email %}
<a class="fa fa-envelope" href="mailto:{{ site.email }}"></a>
<a class="fas fa-envelope" href="mailto:{{ site.email }}"></a>
{% endif %}
<a class="fa fa-rss" href="{{ "/feed.xml" | relative_url }}" target="_blank"></a>
<a class="fas fa-rss" href="{{ "/feed.xml" | relative_url }}" target="_blank"></a>
</div>
<div class="clearfix"></div>