omakase/page.jai
2025-11-20 23:05:04 +02:00

19 lines
340 B
Plaintext

serve_page :: (res: *Response, content: string) {
res.body = sprint("%\n%\n%", header, content, footer);
}
#scope_file
header : string = #string DONE
<html>
<head>
<link rel="stylesheet" href="/style.css">
<title>Omakase</title>
</head>
<body>
DONE
footer : string = #string DONE
</body>
</html>
DONE