51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{define "base"}}
 | |
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
| 	<title>Alias</title>
 | |
| 	<script src="/assets/helpers.js"></script>
 | |
| 	<script src="/assets/htmx.min.js"></script>
 | |
| 	<script src="/assets/htmx.sse.js"></script>
 | |
|         <link href="/assets/tailwind.css" rel="stylesheet"/>
 | |
| 	<link rel="stylesheet" href="/assets/style.css"/>
 | |
| 	<meta charset="utf-8" name="viewport" content="width=device-width,initial-scale=1"/>
 | |
| 	<link rel="icon" sizes="64x64" href="/assets/favicon/wolfhead_negated.ico"/>
 | |
| 	<style type="text/css">
 | |
| 		body{
 | |
|             background-color: #0C1616FF;
 | |
|             color: #8896b2;
 | |
|             max-width: 1000px;
 | |
|             min-width: 0;
 | |
|             margin: 2em auto !important;
 | |
|             margin-left: auto;
 | |
|             margin-right: auto;
 | |
|             line-height: 1.5;
 | |
|             font-size: 16px;
 | |
|             font-family: Open Sans,Arial;
 | |
|             text-align: center;
 | |
|             display: block;
 | |
|         }
 | |
|         a{
 | |
|             color: #00a2e7;
 | |
|         }
 | |
|         a:visited{
 | |
|             color: #ca1a70;
 | |
|         }
 | |
|         table {
 | |
|           border-collapse: separate !important;
 | |
|           border-spacing: 10px 10px;
 | |
|           border: 1px solid white;
 | |
|         }
 | |
|         tr{
 | |
|             border: 1px solid white;
 | |
|         }
 | |
| 	</style>
 | |
| </head>
 | |
| <body>
 | |
| <div id="ancestor" hx-ext="sse" sse-connect="/sub/sse">
 | |
| 	{{template "main" .}}
 | |
| </div>
 | |
| </body>
 | |
| </html>
 | |
| {{end}}
 | 
