* 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.
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			312 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			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 %}
 |