feat: add initial admin page view with layout and basic components

This commit is contained in:
2024-08-20 13:28:09 +07:00
parent fa2f4e8a87
commit 9aff0dbdb1
5 changed files with 503 additions and 3 deletions

View File

@ -0,0 +1,19 @@
package layout
templ Base(){
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/public/output.css" rel="stylesheet"/>
<title>Admin Page</title>
<script src="https://unpkg.com/htmx.org@1.9.12"></script>
</head>
<body>
<div id="content">
{ children... }
</div>
</body>
</html>
}