forked from WeLoveSpeed/welovespeed.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
link.html
16 lines (16 loc) · 812 Bytes
/
link.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% case include.link.type %}
{% when 'url' %}
<a href="{{ include.link.value }}">{{ include.link.name | t: page.locale }}</a>
{% when 'root_anchor' %}
<a href="{{ page.baseurl | default:site.baseurl }}/{{ include.link.anchor }}">{{ include.link.name | t: page.locale }}</a>
{% when 'translate' %}
<a href="{{ include.link.value | t: page.locale }}">{{ include.link.name | t: page.locale }}</a>
{% else %}
{% unless include.link.fr_only %}
<a href="{{ page.baseurl | default:site.baseurl }}/{{ include.link.value | t: page.locale }}/">{{ include.link.name | t: page.locale }}</a>
{% else %}
{% if page.locale == "fr_FR" %}
<a href="{{ page.baseurl | default:site.baseurl }}/{{ include.link.value }}/">{{ include.link.name }}</a>
{% endif %}
{% endunless %}
{% endcase %}