Files
mach_examples/02_hello_world_html/main.c
2026-05-07 19:03:27 -05:00

22 lines
424 B
C

#include <mach.h>
config mach(){
return (config) {
.resources = {
{"home", "/",
.get = {
input({"name", .validation = validate_not_empty, .fallback = "world"}),
render(.template =
"<html>"
"<head></head>"
"<body>"
"<p>Hello {{name}}</p>"
"</body>"
"</html>"
)
}
}
}
};
}