30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
    <head>
 | 
						|
        {{ block "header" . }}
 | 
						|
            <title>
 | 
						|
                {{ block "title" . }}
 | 
						|
                    Ai stuff
 | 
						|
                {{ end }}
 | 
						|
            </title>
 | 
						|
        {{ end }}
 | 
						|
        <link rel="stylesheet" href="/styles/main.css" >
 | 
						|
        <link rel="preconnect" href="https://fonts.googleapis.com">
 | 
						|
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
 | 
						|
        <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
 | 
						|
        <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
 | 
						|
        {{ block "other_imports" . }} {{end}}
 | 
						|
    </head>
 | 
						|
    <body>
 | 
						|
        <script src="https://unpkg.com/htmx.org@1.9.5"></script>
 | 
						|
        <script src="/js/main.js"></script>
 | 
						|
        {{ block "js_imports" . }} {{end}}
 | 
						|
        {{ block "body" . }}
 | 
						|
            {{ block "header.html" . }} {{end}}
 | 
						|
            <div class="app">
 | 
						|
                {{ block "mainbody" . }} {{end}}
 | 
						|
            </div>
 | 
						|
        {{end}}
 | 
						|
    </body>
 | 
						|
</html>
 |