function template(locals) { var pug_html = "", pug_mixins = {}, pug_interp; pug_mixins["article"] = pug_interp = function() { var block = this && this.block, attributes = this && this.attributes || {}; pug_html = pug_html + "
"; block && block(); pug_html = pug_html + "
"; }; pug_html = pug_html + "My Application"; pug_mixins["article"].call({ block: function() { pug_html = pug_html + "

Hello World!

"; } }); pug_html = pug_html + ""; return pug_html; }