#include config(app){ context("greeting", "" "" "" "

Hello {{name}}

" "" "" ); resource("home", "/", .get = { input({"name", .def = "world"}), mustache("greeting", "hello"), respond("hello") } ); }