{% set link = _args.link|default('#') %}
{% set target = _args.target|default(null) %}
{% set text = _args.text %}
{% set active = _args.active|default(false) %}
<li class="breadcrumb-item{% if active %} active{% endif %}"{% if active %} aria-current="page"{% endif %}>
{% if not active %}<a href="{{- link -}}"{% if target %} target="{{ target }}"{% endif %}>{% endif %}
{{- text -}}
{% if not active %}</a>{% endif %}
</li>