mirror of
				https://github.com/Wonderfall/hugo-WonderMod.git
				synced 2025-10-30 19:35:26 +01:00 
			
		
		
		
	 6770e5e552
			
		
	
	6770e5e552
	
	
	
		
			
			credits for fix with [.IsMenuCurrent](https://gohugo.io/functions/ismenucurrent/): https://stackoverflow.com/a/56454338
		
			
				
	
	
		
			19 lines
		
	
	
		
			503 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			503 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="{{ .Site.Language }}">
 | |
| 
 | |
| <head>
 | |
|     {{- partial "head.html" . }}
 | |
| </head>
 | |
| 
 | |
| <body
 | |
|     class="{{ if (and (eq .Kind `page` ) (ne .Layout `archives`)) }}single{{ else }}list{{ if .IsHome }} home {{ end }}{{ end }}{{ if eq $.Site.Params.defaultTheme `dark` }} dark {{ end }}"
 | |
|     id="top">
 | |
|     {{- partialCached "header.html" . .Page}}
 | |
|     <main class="main">
 | |
|         {{- block "main" . }}
 | |
|         {{end }}
 | |
|     </main>
 | |
|     {{- partialCached "footer.html" . .Type }}
 | |
| </body>
 | |
| 
 | |
| </html> |