12 lines
204 B
C
12 lines
204 B
C
|
|
#include <mach.h>
|
||
|
|
|
||
|
|
mach(){
|
||
|
|
context("greeting", "hello {{name}}");
|
||
|
|
resource("home", "/", .mime = m_txt,
|
||
|
|
.get = {
|
||
|
|
input({"name", .fallback = "world"}),
|
||
|
|
mustache("greeting")
|
||
|
|
}
|
||
|
|
);
|
||
|
|
}
|