Files @ d3a8b39a7b01
Branch filter:

Location: symposion_app/pinaxcon/templates/sitetree_header_dropdown.html

Christopher Neugebauer
Adds 2em to the bottom of the illustration div in compact panels (#26)
1
2
3
4
5
6
7
8
{% load sitetree %}
<ul class="dropdown-menu" role="menu">
    {% for item in sitetree_items %}
        <li role="presentation" {% if item.is_current or item.in_current_branch %}class="active"{% endif %}>
            <a role="menuitem" href="{% sitetree_url for item %}" {% if item.hint %}title="{{ item.hint }}"{% endif %}>{{ item.title_resolved }}</a>
        </li>
    {% endfor %}
</ul>