return async env => { let _out = [] _out.push('') html { head { link(rel="stylesheet" type="text/css" href="olly.css") {} title { 'Blog' } } body.olly { h1 { 'Olly\'s Blog' } ul { li { a("href=blog/20200331.html") { b {'31/03/2020'} ' Today we got Linux running on my new Asus Zenbook UM433DA' } } } } } env.site.serve(env, 200, Buffer.from(_out.join('')), 'circle.html.jst') }