mixin-at-end-of-file.js 514 B

123456789101112131415
  1. function template(locals) {
  2. var pug_html = "", pug_mixins = {}, pug_interp;
  3. pug_mixins["slide"] = pug_interp = function() {
  4. var block = this && this.block, attributes = this && this.attributes || {};
  5. pug_html = pug_html + '<section class="slide">';
  6. block && block();
  7. pug_html = pug_html + "</section>";
  8. };
  9. pug_mixins["slide"].call({
  10. block: function() {
  11. pug_html = pug_html + "<p>some awesome content</p>";
  12. }
  13. });
  14. return pug_html;
  15. }