20 lines
		
	
	
		
			632 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			632 B
		
	
	
	
		
			HTML
		
	
	
	
| <div class="docs-nav-mobile unit whole show-on-mobiles">
 | |
|   <select onchange="if (this.value) window.location.href=this.value">
 | |
|     <option value="">Navigate the docs…</option>
 | |
|     {% for section in site.data.docs_nav %}
 | |
|     <optgroup label="{{ section.title }}">
 | |
|       {% for item in section.docs %}
 | |
|         {% assign p = site.documents | where: "url", item.link | first %}
 | |
|         <option value="{{ p.url }}">
 | |
|           {% if p.menu_name %}
 | |
|             {{ p.menu_name }}
 | |
|           {% else %}
 | |
|             {{ p.title }}
 | |
|           {% endif %}
 | |
|         </option>
 | |
|       {% endfor %}
 | |
|     </optgroup>
 | |
|     {% endfor %}
 | |
|   </select>
 | |
| </div>
 |