Move HTML into script

This commit is contained in:
Bruce Hill 2025-04-02 16:19:57 -04:00
parent 639de3e5df
commit 2685c4c31f
2 changed files with 14 additions and 12 deletions

View File

@ -106,17 +106,7 @@ enum RouteEntry(ServeFile(file:Path), Redirect(destination:Text)):
func respond(entry:RouteEntry, request:HTTPRequest -> HTTPResponse):
when entry is ServeFile(file):
body := if file:can_execute():
output := Command(Text(file)):get_output()!
"
<!DOCTYPE HTML>
<html>
<head><title>$file</title></head>
<body>
<h1>$file program output</h1>
<pre>$output</pre>
</body>
</html>
"
Command(Text(file)):get_output()!
else:
file:read()!
return HTTPResponse(body, content_type=_content_type(file))

View File

@ -2,4 +2,16 @@
use random
func main():
say("Random: $(random:int(1,100))")
say("
<!DOCTYPE HTML>
<html>
<head>
<title>Random Number</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Random Number</h1>
Your random number is: $(random:int(1,100))
</body>
</html>
")