Files
mach_examples/02_hello_world_html/main.c
2026-05-26 14:43:53 -05:00

19 lines
287 B
C

#include <mach.h>
mach(){
context("greeting",
"<html>"
"<head></head>"
"<body>"
"<p>Hello {{name}}</p>"
"</body>"
"</html>"
);
resource("home", "/",
.get = {
input({"name", .fallback = "world"}),
mustache("greeting")
}
);
}