Files
guz.one/layouts/page.templ
Gustavo "Guz" L. de Mello e3cbc79533 feat: add fonts
2024-05-23 18:27:47 -03:00

24 lines
390 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);
}
</style>
<title>{ title }</title>
</head>
<body class="bg-black">
{ children... }
</body>
</html>
}