2015-04-23 21:55:18 +08:00
|
|
|
const mstch::node partial_template_data = mstch::map{
|
2015-05-05 20:15:47 +08:00
|
|
|
{"title", mstch::lambda{[]()->mstch::node{ return std::string{"Welcome"}; }}},
|
|
|
|
{"again", mstch::lambda{[]()->mstch::node{ return std::string{"Goodbye"}; }}},
|
2015-04-23 21:55:18 +08:00
|
|
|
};
|