路径: {{current_path.path}}
同级:
{% for i in current_path.currents %}
{{i.name}}
{% endfor %}
导航:
{% for i in current_path.breadcrumb %}
{{i.name}}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% if current_path.children %}
子项:
{% for i in current_path.children %}
{{i.name}}
{% if not forloop.last %}|{% endif %}
{% endfor %}
{% endif %}