Open social links in new tab

Added target="_blank" to each social icon
This commit is contained in:
Jeroen Goddijn 2019-08-19 16:02:38 -05:00 committed by GitHub
parent 4541c9a05b
commit bc310a2d0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<ul class="social-icons">
{% for social in site.social %}
<li>
<a href="{{ social.url }}">
<a href="{{ social.url }}" target="_blank">
{% if social.icon %}<i class="fa fa-{{ social.icon }}"></i>{% endif %}
</a>
</li>