26 lines
348 B
Text
26 lines
348 B
Text
fmt := import("fmt")
|
|
paths := import("paths")
|
|
|
|
htmExt := func(c){
|
|
c.pp.print(`
|
|
<!doctype html>
|
|
<html><head>
|
|
<title>Check shit</title>
|
|
</head><body>
|
|
`)
|
|
}
|
|
|
|
exts := {
|
|
".htm": htmExt,
|
|
".html": htmExt
|
|
}
|
|
|
|
export func(c){
|
|
url_path := c.http.request.url.path
|
|
ext := paths.ext(url_path)
|
|
|
|
cl := exts[ext]
|
|
if !is_undefined(cl) {
|
|
cl(c)
|
|
}
|
|
}
|