mirror of
				https://github.com/taigrr/wtf
				synced 2025-01-18 04:03:14 -08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			675 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			675 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!-- sidebar start -->
 | |
| <div>
 | |
| 	<ul class="sidebar-nav">
 | |
| 		{{ $currentPage := . }}
 | |
| 		{{ range .Site.Menus.main -}}
 | |
| 			{{ if .HasChildren -}}
 | |
| 			<li class="{{ if $currentPage.HasMenuCurrent "main" . }}active{{ end }}">
 | |
| 				<a href="#">{{ .Pre }}<span>{{ .Name }}</span></a>
 | |
| 				<ul class="sidebar-nav">
 | |
| 					{{ range .Children -}}
 | |
| 						<li class="{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}">
 | |
| 							<a href="{{ .URL }}">{{ .Name | title }}</a>
 | |
| 						</li>
 | |
| 					{{- end -}}
 | |
| 				</ul>
 | |
| 			{{- else -}} <!-- No Children-->
 | |
| 				<li>
 | |
| 					<a href="{{.URL}}">{{ .Pre }} <span>{{ .Name | title }}</span></a>
 | |
| 				</li>
 | |
| 			{{- end -}}
 | |
| 		{{- end }}
 | |
| 		</li>
 | |
| 	</ul>
 | |
| </div>
 |