blocks-in-if.js 361 B

12345678910
  1. function template(locals) {
  2. var pug_html = "", pug_mixins = {}, pug_interp;
  3. var ajax = true;
  4. if (ajax) {
  5. pug_html = pug_html + "<p>ajax contents</p>";
  6. } else {
  7. pug_html = pug_html + '<!DOCTYPE html><html><head><meta charset="utf8"><title>sample</title><body><p>all contetns</p></body></head></html>';
  8. }
  9. return pug_html;
  10. }