21 lines
		
	
	
		
			607 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			607 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{define "base"}}
 | |
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
| 	<title>Alias</title>
 | |
| 	<script src="/assets/tailwind.css"></script>
 | |
| 	<link rel="stylesheet" href="/assets/style.css"/>
 | |
| 	<script src="/assets/htmx.min.js"></script>
 | |
| 	<script src="/assets/htmx.sse.js"></script>
 | |
| 	<script src="/assets/helpers.js"></script>
 | |
| 	<meta charset="utf-8" name="viewport" content="width=device-width,initial-scale=1"/>
 | |
| 	<link rel="icon" sizes="64x64" href="/assets/favicon/wolfhead_negated.ico"/>
 | |
| </head>
 | |
| <body>
 | |
| <div id="ancestor" hx-ext="sse" sse-connect="/sub/sse">
 | |
|         {{template "main" .}}
 | |
| </div>
 | |
| </body>
 | |
| </html>
 | |
| {{end}}
 | 
