Files
guz.one/layouts/page.templ
Gustavo "Guz" L. de Mello 08a665df2f feat: in development notice
2024-05-23 18:47:30 -03:00

28 lines
571 B
Plaintext

package layouts
templ Page(title string) {
<html>
<head>
<link rel="stylesheet" href="/uno.css"/>
<style>
@font-face {
font-family: Inter;
src: url(inter.woff2);
}
@font-face {
font-family: Cal Sans;
src: url(cal-sans.woff2);
}
@font-face {
font-family: Fira Code;
src: url(fira-code.woff2);
}
</style>
<title>{ title }</title>
</head>
<body class="bg-black flex flex-col justify-center items-center w-screen h-screen overflow-hidden text-white font-sans">
{ children... }
</body>
</html>
}