Files
nerack/examples/02_hello_world_html/hello_world.c
T
2026-09-13 15:31:00 -05:00

21 lines
373 B
C

#include <nerack.h>
#include <http.h>
module(hello_world){
context("greeting",
"<html>"
"<head></head>"
"<body>"
"<p>Hello {{name}}</p>"
"</body>"
"</html>"
);
http("home", "/",
.get = {
input({"name", not_empty_input, .default_value = "world"}),
html("greeting", "hello"),
http_response("hello")
}
);
}