32 lines
		
	
	
		
			809 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			809 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="de">
 | 
						|
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
    <title>Orient Editor</title>
 | 
						|
    <link href="/web/static/css/style.css" rel="stylesheet">
 | 
						|
</head>
 | 
						|
 | 
						|
<body class="flex flex-col justify-between min-h-screen bg-slate-50">
 | 
						|
    <header class="my-8">
 | 
						|
        <h1 class="font-bold text-4xl text-center">Orient Editor</h1>
 | 
						|
    </header>
 | 
						|
 | 
						|
    <main class="mx-4">
 | 
						|
        <div id="page-content">
 | 
						|
            {{template "page-content" .}}
 | 
						|
        </div>
 | 
						|
    </main>
 | 
						|
 | 
						|
    <footer class="my-8">
 | 
						|
        <p class="text-center text-gray-500 dark:text-gray-400">
 | 
						|
            © 2024 Jason Streifling. Alle Rechte vorbehalten.
 | 
						|
        </p>
 | 
						|
    </footer>
 | 
						|
 | 
						|
    <script src="/web/static/js/htmx.min.js"></script>
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |