02dc082958
* 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.
17 lines
491 B
HTML
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>
|