mixin-via-include.js 484 B

12345678910111213
  1. function template(locals) {
  2. var pug_html = "", pug_mixins = {}, pug_interp;
  3. pug_mixins["bang"] = pug_interp = function() {
  4. var block = this && this.block, attributes = this && this.attributes || {};
  5. pug_mixins["foo"]();
  6. };
  7. pug_mixins["foo"] = pug_interp = function() {
  8. var block = this && this.block, attributes = this && this.attributes || {};
  9. pug_html = pug_html + "<p>bar</p>";
  10. };
  11. pug_mixins["bang"]();
  12. return pug_html;
  13. }