21 lines
371 B
Plaintext
21 lines
371 B
Plaintext
#load "components/index.jai";
|
|
|
|
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
|