forked from enviPath/enviPy
Current Dev State
This commit is contained in:
8
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/factory/components.js
generated
vendored
Normal file
8
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/factory/components.js
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
'use strict';
|
||||
|
||||
module.exports.register = function (hb) {
|
||||
hb.registerPartial({
|
||||
item: '<li>{{label}}</li>',
|
||||
link: '<a href="{{url}}">{{label}}</a>'
|
||||
});
|
||||
};
|
||||
6
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/factory/layouts.js
generated
vendored
Normal file
6
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/factory/layouts.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
module.exports.register = function (hb) {
|
||||
hb.registerPartial('layout', '<!doctype html>\n<html>\n<head>\n <title>{{{block "title"}}}</title>\n</head>\n<body>\n {{{block "body"}}}\n</body>\n</html>');
|
||||
hb.registerPartial('layout-2col', '{{#extend "layout"}}\n {{#content "body"}}\n {{{block "left"}}}\n {{{block "right"}}}\n {{/content}}\n{{/extend}}');
|
||||
};
|
||||
1
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/function/components/item.hbs
generated
vendored
Normal file
1
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/function/components/item.hbs
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
<li>{{label}}</li>
|
||||
1
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/function/components/link.hbs
generated
vendored
Normal file
1
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/function/components/link.hbs
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
<a href="{{url}}">{{label}}</a>
|
||||
6
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/function/layout-2col.hbs
generated
vendored
Normal file
6
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/function/layout-2col.hbs
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
{{#extend "layout"}}
|
||||
{{#content "body"}}
|
||||
{{{block "left"}}}
|
||||
{{{block "right"}}}
|
||||
{{/content}}
|
||||
{{/extend}}
|
||||
9
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/function/layout.hbs
generated
vendored
Normal file
9
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/function/layout.hbs
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>{{{block "title"}}}</title>
|
||||
</head>
|
||||
<body>
|
||||
{{{block "body"}}}
|
||||
</body>
|
||||
</html>
|
||||
6
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/object/components.js
generated
vendored
Normal file
6
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/object/components.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
item: '<li>{{label}}</li>',
|
||||
link: '<a href="{{url}}">{{label}}</a>'
|
||||
};
|
||||
6
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/object/layouts.js
generated
vendored
Normal file
6
static/js/ketcher2/node_modules/handlebars-wax/test/fixtures/partials/object/layouts.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
layout: '<!doctype html>\n<html>\n<head>\n <title>{{{block "title"}}}</title>\n</head>\n<body>\n {{{block "body"}}}\n</body>\n</html>',
|
||||
'layout-2col': '{{#extend "layout"}}\n {{#content "body"}}\n {{{block "left"}}}\n {{{block "right"}}}\n {{/content}}\n{{/extend}}'
|
||||
};
|
||||
Reference in New Issue
Block a user