chore: break lines in html to readability

This commit is contained in:
Gustavo "Guz" L. de Mello
2024-05-29 15:06:40 -03:00
parent 7f431aed5b
commit a2a86d7f32

View File

@@ -4,12 +4,23 @@ templ Page(title string) {
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta
name="viewport"
content={ "width=device-width, " +
"initial-scale=1.0, " +
"maximum-scale=1.0, " +
"user-scalable=no" }
/>
<link rel="stylesheet" href="/uno.css"/>
<link rel="stylesheet" href="/global.css"/>
<title>{ title }</title>
<script type="module" src="/scripts/popover.js"></script>
<link rel="stylesheet" href="/styles/popover.css"/>
</head>
<body class="flex flex-col justify-center items-center w-screen h-screen overflow-hidden text-white bg-black font-sans m-0">
<body
class={ "flex flex-col justify-center items-center " +
"w-screen h-screen overflow-hidden text-white bg-black font-sans m-0" }
>
{ children... }
</body>
</html>