Files @ 32c8c0ce5043
Branch filter:

Location: symposion_app/symposion_project/templates/sitetree/submenu.html

Luke Hatcher
end with a newline
1
2
3
4
5
6
7
8
{% load sitetree %}
<ul class="dropdown-menu">
    {% for item in sitetree_items %}
    <li>
        <a href="{% sitetree_url for item %}" title="{{ item.hint|default:"" }}">{{ item.title_resolved }}</a>
    </li>
    {% endfor %}
</ul>