return async env => { let _out = [] _out.push('') html { head { title { 'Thanks for your order!' } link(rel="stylesheet" href="style.css") {} } body { section { p { 'We appreciate your business! If you have any questions, please email ' a(href="mailto:orders@example.com") { 'orders@example.com' } '.' } } } } env.site.serve(env, 200, Buffer.from(_out.join('')), 'success.html.jst') }