Files
nerak/examples/02_hello_world_html/main.c
T
2026-06-22 18:29:08 -05:00

20 lines
327 B
C

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