You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
415 B
11 lines
415 B
9 years ago
|
<ul class="menu-item">
|
||
|
<li class="home"><a href="/">{{ site.title }}</a></li>
|
||
|
{% for link in site.data.navigation %}
|
||
|
{% if link.url contains 'http' %}
|
||
|
{% assign domain = '' %}
|
||
|
{% else %}
|
||
|
{% assign domain = site.url %}
|
||
|
{% endif %}
|
||
|
<li><a href="{{ domain }}{{ link.url }}" {% if link.url contains 'http' %}target="_blank"{% endif %}>{{ link.title }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|