Blame templates/html/htmlnavpath.tpl

Packit 1c1d7e
{# input: navpath which is a list of links #}
Packit 1c1d7e
{% if navpath %}
Packit 1c1d7e
  
Packit 1c1d7e
    
    Packit 1c1d7e
        {% for obj in navpath %}
    Packit 1c1d7e
          
  • Packit 1c1d7e
            {% with text=obj.text %}
    Packit 1c1d7e
              {% include 'htmlobjlink.tpl' %}
    Packit 1c1d7e
            {% endwith %}
    Packit 1c1d7e
          
    Packit 1c1d7e
        {% endfor %}
    Packit 1c1d7e
        
    Packit 1c1d7e
      
    Packit 1c1d7e
    {% endif %}