yield-before-conditional.js 395 B

123456789
  1. function template(locals) {
  2. var pug_html = "", pug_mixins = {}, pug_interp;
  3. pug_html = pug_html + '<html><body><head><script src="/jquery.js"></script><script src="/caustic.js"></script><script src="/app.js"></script>';
  4. if (false) {
  5. pug_html = pug_html + '<script src="/jquery.ui.js"></script>';
  6. }
  7. pug_html = pug_html + "</head></body></html>";
  8. return pug_html;
  9. }