return async env => { let _out = [] _out.push('') html { head { link(rel="stylesheet" type="text/css" href="olly.css") {} title { 'Olly\'s Website' } } body.olly { h1 { 'Olly\'s Website' } ul{ li{ a(href="/circle.html") { 'Go to Circle Calculator' } } li{ a(href="/trapezium.html") { 'Go to Trapezium Area Calculator' } } li{ a(href="/blog.html") { 'Go to Daily Blog' } } } } } env.site.serve(env, 200, Buffer.from(_out.join('')), 'index.html.jst') }