chore: break lines in html to readability
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user