2024-01-15 22:26:51 +00:00
|
|
|
package html
|
|
|
|
|
|
|
|
type BaseContext struct {
|
2024-05-25 03:29:44 +00:00
|
|
|
Title string
|
2024-01-15 22:26:51 +00:00
|
|
|
Description string
|
|
|
|
}
|
|
|
|
|
|
|
|
templ base(bc BaseContext) {
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2024-01-21 01:03:23 +00:00
|
|
|
<meta charset="UTF-8"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
2024-01-15 22:26:51 +00:00
|
|
|
<title>{ bc.Title }</title>
|
|
|
|
<link rel="icon" href="/_/favicon.svg"/>
|
|
|
|
<link rel="stylesheet" href="/_/tailwind.css"/>
|
|
|
|
<meta property="og:title" content={ bc.Title }/>
|
|
|
|
<meta property="og:description" content={ bc.Description }/>
|
|
|
|
</head>
|
2024-03-28 02:25:20 +00:00
|
|
|
<body class="latte dark:mocha bg-base/50 dark:bg-base/95 max-w-7xl mx-5 sm:mx-auto my-10">
|
2024-01-15 22:26:51 +00:00
|
|
|
<h2 class="text-text text-xl mb-3"><a class="underline decoration-text/50 decoration-dashed hover:decoration-solid" href="/">Home</a></h2>
|
|
|
|
{ children... }
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
}
|