22 lines
415 B
C
22 lines
415 B
C
|
|
#include <mach.h>
|
||
|
|
|
||
|
|
config mach(){
|
||
|
|
return (config) {
|
||
|
|
.resources = {
|
||
|
|
{"home", "/",
|
||
|
|
.get = {
|
||
|
|
input({"name", .validate = v_not_empty, .fallback = "world"}),
|
||
|
|
render(.template =
|
||
|
|
"<html>"
|
||
|
|
"<head></head>"
|
||
|
|
"<body>"
|
||
|
|
"<p>Hello {{name}}</p>"
|
||
|
|
"</body>"
|
||
|
|
"</html>"
|
||
|
|
)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|