mirror of
				https://github.com/Theodor-Springmann-Stiftung/musenalm.git
				synced 2025-10-30 17:55:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			743 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			743 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <!doctype html>
 | |
| <html class="w-full h-full" {{ if .lang }}lang="{{ .lang }}"{{ end }}>
 | |
| 	<head>
 | |
| 		{{ block "head" . }}
 | |
| 			<!-- Default Head elements -->
 | |
| 		{{ end }}
 | |
| 
 | |
| 		{{ template "_head" . }}
 | |
| 
 | |
| 	</head>
 | |
| 
 | |
| 	<body id="body" class="w-full text-lg" hx-ext="response-targets" hx-boost="true">
 | |
| 		<div class="flex flex-col min-h-screen w-full">
 | |
| 			<header class="container-normal pb-0" id="header">
 | |
| 				{{ block "_menu" . }}
 | |
| 					<!-- Default app menu... -->
 | |
| 				{{ end }}
 | |
| 			</header>
 | |
| 
 | |
| 			<main class="">
 | |
| 				{{ block "body" . }}
 | |
| 					<!-- Default app body... -->
 | |
| 				{{ end }}
 | |
| 			</main>
 | |
| 
 | |
| 			{{ template "_footer" . }}
 | |
| 
 | |
| 			{{ block "scripts" . }}
 | |
| 				<!-- Default scripts... -->
 | |
| 			{{ end }}
 | |
| 
 | |
| 			{{ template "_scripts" . }}
 | |
| 		</div>
 | |
| 	</body>
 | |
| </html>
 | 
