symposion_app/pinaxcon/templates/sitetree_header_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

17 lines
491 B
HTML

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