gopp/mod/pre.tengo

31 lines
398 B
Text
Raw Normal View History

fmt := import("fmt")
paths := import("paths")
htmExt := func(c){
c.pp.print(`
<!doctype html>
<html><head>
`)
2024-05-20 20:34:11 +03:00
if c.title {
c.pp.printf(`<title>%s</title>`, c.title)
}
c.pp.print(`
</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)
}
}