{% load i18n baseurl %}
{% for item in navitems %}
{% if item.path.language %}{{ item.path.language.text }}{% endif %}
{% if item.path.project %}{% trans " » " %}{{ item.path.project.text }}{% endif %}
{% for pathlink in item.path.pathlinks %}
{% if forloop.first %}{% trans " » " %}{% endif %}
{{ pathlink.text }}{{ pathlink.sep }}
{% endfor %}
{% endfor %}