File diff 1b04b7a9f73c → 2665fd575869
symposion/templates/sitetree/tree.html
Show inline comments
 
new file 100644
 
{% load sitetree %}
 
{% if sitetree_items %}
 
<ul>
 
    {% for item in sitetree_items %}
 
        {% if item.insitetree  %}
 
            <li>
 
                <a href="{% sitetree_url for item %}" {% if item.hint %}title="{{ item.hint }}"{% endif %}>{{ item.title_resolved }}</a>
 
                {% if item.has_children %}
 
                    {% sitetree_children of item for sitetree template "sitetree/tree.html" %}
 
                {% endif %}
 
            </li>
 
        {% endif %}
 
    {% endfor %}
 
</ul>
 
{% endif %}