Blame templates/html/htmlnavpath.tpl

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