Files
nerak/examples/02_hello_world_html/app.c
T
2026-07-14 14:31:43 -05:00

20 lines
321 B
C

#include <nerak.h>
config(app){
context("greeting",
"<html>"
"<head></head>"
"<body>"
"<p>Hello {{name}}</p>"
"</body>"
"</html>"
);
resource("home", "/",
.get = {
input({"name", .def = "world"}),
mustache("greeting", "hello"),
respond("hello")
}
);
}