mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-13 19:45:26 +00:00
15 lines
236 B
JavaScript
15 lines
236 B
JavaScript
export function get(req, res) {
|
|
res.writeHead(200, {
|
|
'Content-Type': 'text/html'
|
|
});
|
|
|
|
res.end(`
|
|
<!doctype html>
|
|
<html>
|
|
<head><meta charset="utf-8"></head>
|
|
<body>
|
|
<h1>${req.params.slug}</h1>
|
|
</body>
|
|
</html>
|
|
`);
|
|
} |