19 lines
340 B
Plaintext
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
|