mirror of
				https://github.com/Theodor-Springmann-Stiftung/musenalm.git
				synced 2025-10-29 09:15:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <!doctype html>
 | |
| <html class="w-full h-full" {{ if .lang }}lang="{{ .lang }}"{{ end }}>
 | |
| 	<head>
 | |
| 		<meta charset="UTF-8" />
 | |
| 
 | |
| 		{{ block "head" . }}
 | |
| 			<!-- Default Head elements -->
 | |
| 		{{ end }}
 | |
| 
 | |
| 		{{ if .isDev }}
 | |
| 			<link rel="icon" href="/assets/logo/dev_favicon.png" />
 | |
| 		{{ else }}
 | |
| 			<link rel="icon" href="/assets/logo/favicon.png" />
 | |
| 		{{ end }}
 | |
| 
 | |
| 
 | |
| 		<link href="/assets/css/remixicon.css" rel="stylesheet" />
 | |
| 		<script src="/assets/js/alpine.min.js" defer></script>
 | |
| 		<script src="/assets/js/htmx.min.js" defer></script>
 | |
| 		<script src="/assets/js/htmx-response-targets.js" defer></script>
 | |
| 		<script src="/assets/js/client-side-templates.js" defer></script>
 | |
| 		<script src="/assets/js/mark.min.js" defer></script>
 | |
| 
 | |
| 		<script type="module" src="/assets/scripts.js"></script>
 | |
| 
 | |
| 		<link rel="stylesheet" type="text/css" href="/assets/css/fonts.css" />
 | |
| 		<link rel="stylesheet" type="text/css" href="/assets/style.css" />
 | |
| 	</head>
 | |
| 
 | |
| 	<body class="w-full text-lg" hx-ext="response-targets" hx-boost="true">
 | |
| 		<div class="container flex flex-col min-h-screen max-w-(--breakpoint-xl) mx-auto px-3 py-3.5">
 | |
| 			<header class="" id="header">
 | |
| 				{{ block "_menu" . }}
 | |
| 					<!-- Default app menu... -->
 | |
| 				{{ end }}
 | |
| 			</header>
 | |
| 
 | |
| 			<main class="">
 | |
| 				{{ block "body" . }}
 | |
| 					<!-- Default app body... -->
 | |
| 				{{ end }}
 | |
| 			</main>
 | |
| 
 | |
| 			<footer>
 | |
| 				{{ block "_footer" . }}
 | |
| 				{{ end }}
 | |
| 			</footer>
 | |
| 
 | |
| 			<scroll-button></scroll-button>
 | |
| 		</div>
 | |
| 	</body>
 | |
| </html>
 | 
