We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9af4d3b commit 6c9509dCopy full SHA for 6c9509d
_includes/header.html
@@ -4,9 +4,9 @@
4
<span class="social_links">
5
{% for link in site.dash.social_links %}
6
{% if link.fa == true %}
7
- <a class="color-{{ link.color }}-hover" href="{{ link.url }}"><i class="fa fa-{{ link.icon }}"></i></a>
+ <a class="color-{{ link.color }}-hover" href="{{ link.url }}"{% if link.rel %} rel="{{ link.rel }}"{% endif %}><i class="fa fa-{{ link.icon }}"></i></a>
8
{% else %}
9
- <a class="color-{{ link.color }}-hover" href="{{ link.url }}"><i class="fab fa-{{ link.icon }}"></i></a>
+ <a class="color-{{ link.color }}-hover" href="{{ link.url }}"{% if link.rel %} rel="{{ link.rel }}"{% endif %}><i class="fab fa-{{ link.icon }}"></i></a>
10
{% endif %}
11
{% endfor %}
12
</span>
0 commit comments