Enable blank target in nav links
This commit is contained in:
@ -1,10 +1,13 @@
|
||||
{% macro nav_items() %}
|
||||
{% for item in config.extra.nav %}
|
||||
<li><a
|
||||
{% if item.external %}
|
||||
<li><a class="external" href="{{ item.path }}">{{ item.title }}</a></li>
|
||||
{% else %}
|
||||
<li><a href="{{ item.path }}">{{ item.title }}</a></li>
|
||||
class="external" href="{{ item.path }}"
|
||||
{% endif %}
|
||||
{% if item.target_blank %}
|
||||
target="_blank"
|
||||
{% endif %}
|
||||
href="{{ item.path }}">{{ item.title }}</a></li>
|
||||
{% endfor %}
|
||||
{% endmacro %}
|
||||
|
||||
|
Reference in New Issue
Block a user