symposion_app/pinaxcon/templates/sitetree_opener_dropdown.html
Christopher Neugebauer 02dc082958 Thursday + Takeflight changes (#31)
* Adds Facebook svg button, and adds Facebook link type to models

* CSS work from takeflight, 30 June 2016

* Adds drop-down menus for navigation

* Adds mobile menus for navigation

* Minor tweak to mobile nav headings

* Makes the logo a link back to the homepage

* Updates the footer to the current version, removing sponsor logos for the moment.
2016-06-30 17:25:50 +10:00

13 lines
312 B
HTML

{% load sitetree %}
{% for item in sitetree_items %}
<li role="presentation" class="mobile-menu--item">
<a role="menuitem" href="{% sitetree_url for item %}"
{% if item.hint %}
title="{{ item.hint }}"
{% endif %}
>
{{ item.title_resolved }}
</a>
</li>
{% endfor %}