We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c131c70 commit 4ed9f85Copy full SHA for 4ed9f85
_includes/about/social.html
@@ -1,6 +1,12 @@
1
-<a href="{{ include.url }}" target="_blank">
2
- <svg class="tf-social">
3
- <use xlink:href="{{ '/img/bootstrap-icons.svg' | prepend: site.baseurl }}#{{- include.name -}}"/>
4
- </svg>
5
- <span>{{ include.label }}</span>
6
-</a>
+{% assign url = include.url %}
+{% if include.name == 'house' %}
+<a href="{{ url }}">
+ {% else %}
+ <a href="{{ url }}" target="_blank">
+ {% endif %}
7
+ <svg class="tf-social">
8
+ <use xlink:href="{{ '/img/bootstrap-icons.svg' | prepend: site.baseurl }}#{{- include.name -}}"/>
9
+ </svg>
10
+ <span>{{ include.label }}</span>
11
+ </a>
12
+</a>
0 commit comments