uce/site/info/themes/common/page.json.uce
2026-04-28 12:10:07 +00:00

13 lines
358 B
Plaintext

#load "../../lib/app.uce"
COMPONENT(Request& context)
{
starter_boot(context);
context.header["Content-Type"] = "application/json";
context.header["Cache-Control"] = "no-cache, no-store, must-revalidate";
if(context.props["json"].get_type_name() == "array")
print(json_encode(context.props["json"]));
else
print(starter_page_main_html(context));
}