31 lines
918 B
Plaintext
31 lines
918 B
Plaintext
package pages
|
|
|
|
import "git.hafen.run/lukas/timeshare/components/toast"
|
|
|
|
templ PageSkeleton(title string) {
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<!-- Tailwind CSS (output) -->
|
|
<link href="/assets/css/output.css" rel="stylesheet"/>
|
|
<title>{ title }</title>
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/apple-touch-icon.png"/>
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon-32x32.png"/>
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon-16x16.png"/>
|
|
<link rel="manifest" href="/assets/site.webmanifest"/>
|
|
<style>
|
|
::view-transition-old(root),
|
|
::view-transition-new(root) {
|
|
animation-duration: 0.5s;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="p-0 m-0">
|
|
{ children... }
|
|
@toast.Script()
|
|
</body>
|
|
</html>
|
|
}
|