UNPKG

grunt-mangony

Version:

Grunt wrapper for Mangony, another static site generator - fast, simple and powerful.

272 lines 22.7 kB
{ "__repository": { "layouts": [ "lyt-default" ], "pages": [ "index", "page-components" ], "partials": [ "b-sitemap", "_metadata", "b-version", "_scripts", "_styles", "k-tester", "s-tester", "test" ], "panels": [], "data": [ "config", "tester" ] }, "__layouts": { "lyt-default": { "id": "lyt-default", "assets": "./", "ext": ".html", "srcExt": ".hbs", "basename": "lyt-default.hbs", "filename": "lyt-default", "dirname": "test/fixtures/layouts", "destDir": "test/expected/", "destSubDir": "", "destFile": "lyt-default.html", "serverFile": "lyt-default", "raw": "<!DOCTYPE html>\r\n<!--[if lt IE 7]> <html lang=\"en\" class=\"no-js lt-ie9 lt-ie8 lt-ie7\"> <![endif]-->\r\n<!--[if IE 7]> <html lang=\"en\" class=\"no-js lt-ie9 lt-ie8\"> <![endif]-->\r\n<!--[if IE 8]> <html lang=\"en\" class=\"no-js lt-ie9\"> <![endif]-->\r\n<!--[if gt IE 8]><!-->\r\n\r\n{{> b-version}}\r\n\r\n<html lang=\"en\" class=\"no-js\"> <!--<![endif]-->\r\n\r\n<head>\r\n\t\r\n\t{{#block \"metadata\"}}\r\n\t\t{{> _metadata }}\r\n\t{{/block}}\r\n\t{{#block \"styles\"}}\r\n\t\t{{> _styles }}\r\n\t{{/block}}\r\n\t\r\n</head>\r\n\r\n<body class=\"{{bodyclass}}\">\r\n\t\r\n\t{{#block \"main\"}}\r\n\t{{/block}}\r\n\t\r\n\t<!-- Scripts\r\n\t================================================== --> \r\n\t{{#block \"scripts\"}}\r\n\t\t{{> _scripts }}\r\n\t{{/block}}\r\n\t\r\n</body>\r\n</html>", "parsed": { "orig": "<!DOCTYPE html>\r\n<!--[if lt IE 7]> <html lang=\"en\" class=\"no-js lt-ie9 lt-ie8 lt-ie7\"> <![endif]-->\r\n<!--[if IE 7]> <html lang=\"en\" class=\"no-js lt-ie9 lt-ie8\"> <![endif]-->\r\n<!--[if IE 8]> <html lang=\"en\" class=\"no-js lt-ie9\"> <![endif]-->\r\n<!--[if gt IE 8]><!-->\r\n\r\n{{> b-version}}\r\n\r\n<html lang=\"en\" class=\"no-js\"> <!--<![endif]-->\r\n\r\n<head>\r\n\t\r\n\t{{#block \"metadata\"}}\r\n\t\t{{> _metadata }}\r\n\t{{/block}}\r\n\t{{#block \"styles\"}}\r\n\t\t{{> _styles }}\r\n\t{{/block}}\r\n\t\r\n</head>\r\n\r\n<body class=\"{{bodyclass}}\">\r\n\t\r\n\t{{#block \"main\"}}\r\n\t{{/block}}\r\n\t\r\n\t<!-- Scripts\r\n\t================================================== --> \r\n\t{{#block \"scripts\"}}\r\n\t\t{{> _scripts }}\r\n\t{{/block}}\r\n\t\r\n</body>\r\n</html>", "data": {}, "content": "<!DOCTYPE html>\r\n<!--[if lt IE 7]> <html lang=\"en\" class=\"no-js lt-ie9 lt-ie8 lt-ie7\"> <![endif]-->\r\n<!--[if IE 7]> <html lang=\"en\" class=\"no-js lt-ie9 lt-ie8\"> <![endif]-->\r\n<!--[if IE 8]> <html lang=\"en\" class=\"no-js lt-ie9\"> <![endif]-->\r\n<!--[if gt IE 8]><!-->\r\n\r\n{{> b-version}}\r\n\r\n<html lang=\"en\" class=\"no-js\"> <!--<![endif]-->\r\n\r\n<head>\r\n\t\r\n\t{{#block \"metadata\"}}\r\n\t\t{{> _metadata }}\r\n\t{{/block}}\r\n\t{{#block \"styles\"}}\r\n\t\t{{> _styles }}\r\n\t{{/block}}\r\n\t\r\n</head>\r\n\r\n<body class=\"{{bodyclass}}\">\r\n\t\r\n\t{{#block \"main\"}}\r\n\t{{/block}}\r\n\t\r\n\t<!-- Scripts\r\n\t================================================== --> \r\n\t{{#block \"scripts\"}}\r\n\t\t{{> _scripts }}\r\n\t{{/block}}\r\n\t\r\n</body>\r\n</html>" } } }, "__partials": { "b-sitemap": { "id": "b-sitemap", "assets": "../", "ext": ".html", "srcExt": ".hbs", "basename": "b-sitemap.hbs", "filename": "b-sitemap", "dirname": "test/fixtures/partials/blocks", "destDir": "test/expected/", "destSubDir": "blocks", "destFile": "blocks/b-sitemap.html", "serverFile": "blocks/b-sitemap", "raw": "{{! ---\r\nblock: sitemap\r\n============================================\r\n\r\nImportant Notes:\r\nBe sure you use collections to categorize your sitemap.\r\nIf you do not want to use collections, just delete this `sitemap` partial\r\n--- }}\r\n\r\n<nav class=\"b-sitemap\">\r\n\t{{#each sitemap}}\r\n\t\t<div class=\"sitemap__overview\">\r\n\t\t\t<h3 class=\"sitemap__headline\">{{sitemap}}</h3>\r\n\t\t\t<ol class=\"sitemap__list\">\r\n\t\t\t\t{{#withSort ../pages \"data.sortOrder\"}}\r\n\t\t\t\t\t{{#is data.sitemap ../sitemap}}\r\n\t\t\t\t\t\t<li class=\"sitemap__list-item\">\r\n\t\t\t\t\t\t\t<a href=\"{{autolink}}\" class=\"sitemap__list-item-link{{#is ../../page.dest ../this.dest}} is-active{{/is}}\">\r\n\t\t\t\t\t\t\t\t{{data.menuLink}}\r\n\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t</li>\r\n\t\t\t\t\t{{/is}}\r\n\t\t\t\t{{/withSort}}\r\n\t\t\t</ol>\r\n\t\t</div>\r\n\t{{/each}}\r\n</nav>", "parsed": { "orig": "{{! ---\r\nblock: sitemap\r\n============================================\r\n\r\nImportant Notes:\r\nBe sure you use collections to categorize your sitemap.\r\nIf you do not want to use collections, just delete this `sitemap` partial\r\n--- }}\r\n\r\n<nav class=\"b-sitemap\">\r\n\t{{#each sitemap}}\r\n\t\t<div class=\"sitemap__overview\">\r\n\t\t\t<h3 class=\"sitemap__headline\">{{sitemap}}</h3>\r\n\t\t\t<ol class=\"sitemap__list\">\r\n\t\t\t\t{{#withSort ../pages \"data.sortOrder\"}}\r\n\t\t\t\t\t{{#is data.sitemap ../sitemap}}\r\n\t\t\t\t\t\t<li class=\"sitemap__list-item\">\r\n\t\t\t\t\t\t\t<a href=\"{{autolink}}\" class=\"sitemap__list-item-link{{#is ../../page.dest ../this.dest}} is-active{{/is}}\">\r\n\t\t\t\t\t\t\t\t{{data.menuLink}}\r\n\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t</li>\r\n\t\t\t\t\t{{/is}}\r\n\t\t\t\t{{/withSort}}\r\n\t\t\t</ol>\r\n\t\t</div>\r\n\t{{/each}}\r\n</nav>", "data": {}, "content": "{{! ---\r\nblock: sitemap\r\n============================================\r\n\r\nImportant Notes:\r\nBe sure you use collections to categorize your sitemap.\r\nIf you do not want to use collections, just delete this `sitemap` partial\r\n--- }}\r\n\r\n<nav class=\"b-sitemap\">\r\n\t{{#each sitemap}}\r\n\t\t<div class=\"sitemap__overview\">\r\n\t\t\t<h3 class=\"sitemap__headline\">{{sitemap}}</h3>\r\n\t\t\t<ol class=\"sitemap__list\">\r\n\t\t\t\t{{#withSort ../pages \"data.sortOrder\"}}\r\n\t\t\t\t\t{{#is data.sitemap ../sitemap}}\r\n\t\t\t\t\t\t<li class=\"sitemap__list-item\">\r\n\t\t\t\t\t\t\t<a href=\"{{autolink}}\" class=\"sitemap__list-item-link{{#is ../../page.dest ../this.dest}} is-active{{/is}}\">\r\n\t\t\t\t\t\t\t\t{{data.menuLink}}\r\n\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t</li>\r\n\t\t\t\t\t{{/is}}\r\n\t\t\t\t{{/withSort}}\r\n\t\t\t</ol>\r\n\t\t</div>\r\n\t{{/each}}\r\n</nav>" } }, "_metadata": { "id": "_metadata", "assets": "../", "ext": ".html", "srcExt": ".hbs", "basename": "_metadata.hbs", "filename": "_metadata", "dirname": "test/fixtures/partials/globals", "destDir": "test/expected/", "destSubDir": "globals", "destFile": "globals/_metadata.html", "serverFile": "globals/_metadata", "raw": "<meta charset=\"utf-8\"/>\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=IE7\"/>\r\n<meta name=\"viewport\" content=\"width=device-width\"/>\r\n<title>{{title}} | {{config.title}}</title>\r\n<link rel=\"shortcut icon\" href=\"{{assets}}/img/favicon.ico\" type=\"image/x-icon\">\r\n<link rel=\"icon\" href=\"{{assets}}/img/favicon.ico\" type=\"image/x-icon\">", "parsed": { "orig": "<meta charset=\"utf-8\"/>\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=IE7\"/>\r\n<meta name=\"viewport\" content=\"width=device-width\"/>\r\n<title>{{title}} | {{config.title}}</title>\r\n<link rel=\"shortcut icon\" href=\"{{assets}}/img/favicon.ico\" type=\"image/x-icon\">\r\n<link rel=\"icon\" href=\"{{assets}}/img/favicon.ico\" type=\"image/x-icon\">", "data": {}, "content": "<meta charset=\"utf-8\"/>\r\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge,chrome=IE7\"/>\r\n<meta name=\"viewport\" content=\"width=device-width\"/>\r\n<title>{{title}} | {{config.title}}</title>\r\n<link rel=\"shortcut icon\" href=\"{{assets}}/img/favicon.ico\" type=\"image/x-icon\">\r\n<link rel=\"icon\" href=\"{{assets}}/img/favicon.ico\" type=\"image/x-icon\">" } }, "b-version": { "id": "b-version", "assets": "../", "ext": ".html", "srcExt": ".hbs", "basename": "b-version.hbs", "filename": "b-version", "dirname": "test/fixtures/partials/blocks", "destDir": "test/expected/", "destSubDir": "blocks", "destFile": "blocks/b-version.html", "serverFile": "blocks/b-version", "raw": "---\r\nblock: version\r\n---\r\n<!--\r\n===================== version=\"0.0.1\" =====================\r\n-->", "parsed": { "orig": "---\r\nblock: version\r\n---\r\n<!--\r\n===================== version=\"0.0.1\" =====================\r\n-->", "data": { "block": "version" }, "content": "\r\n<!--\r\n===================== version=\"0.0.1\" =====================\r\n-->" } }, "_scripts": { "id": "_scripts", "assets": "../", "ext": ".html", "srcExt": ".hbs", "basename": "_scripts.hbs", "filename": "_scripts", "dirname": "test/fixtures/partials/globals", "destDir": "test/expected/", "destSubDir": "globals", "destFile": "globals/_scripts.html", "serverFile": "globals/_scripts", "raw": "\r\n<script src=\"js/vendor/libs.js\"></script>\r\n<script src=\"js/main.js\"></script>\r\n\r\n\r\n", "parsed": { "orig": "\r\n<script src=\"js/vendor/libs.js\"></script>\r\n<script src=\"js/main.js\"></script>\r\n\r\n\r\n", "data": {}, "content": "\r\n<script src=\"js/vendor/libs.js\"></script>\r\n<script src=\"js/main.js\"></script>\r\n\r\n\r\n" } }, "_styles": { "id": "_styles", "assets": "../", "ext": ".html", "srcExt": ".hbs", "basename": "_styles.hbs", "filename": "_styles", "dirname": "test/fixtures/partials/globals", "destDir": "test/expected/", "destSubDir": "globals", "destFile": "globals/_styles.html", "serverFile": "globals/_styles", "raw": "<link rel=\"stylesheet\" href=\"{{assets}}/css/styles.css\"/>\r\n", "parsed": { "orig": "<link rel=\"stylesheet\" href=\"{{assets}}/css/styles.css\"/>\r\n", "data": {}, "content": "<link rel=\"stylesheet\" href=\"{{assets}}/css/styles.css\"/>\r\n" } }, "k-tester": { "id": "k-tester", "assets": "../../", "ext": ".html", "srcExt": ".hbs", "basename": "k-tester.hbs", "filename": "k-tester", "dirname": "test/fixtures/partials/globals/tester", "destDir": "test/expected/", "destSubDir": "globals/tester", "destFile": "globals/tester/k-tester.html", "serverFile": "globals/tester/k-tester", "raw": "---\r\nkVar: test\r\n---\r\n\r\n{{! ---\r\ngeneral: k-tester\r\n============================================\r\n\r\nRequirements:\r\n- (only hbs)\r\n\r\nOptions:\r\n- testerClasses {String} - Modifier classes\r\n\r\nImportant Notes:\r\n\r\n--- }}\r\n\r\n\r\n<div class=\"k-tester{{#if testerClasses}} {{testerClasses}}{{/if}}\"\r\n data-js-module=\"tester\"\r\n data-js-options='{\r\n \t{{#each testerJsOptions}}\"{{optionsKey}}\": {{#unless optionsObject}}\"{{/unless}}{{{optionsValue}}}{{#unless optionsObject}}\"{{/unless}}{{#if @last}}{{else}}, {{/if}}{{/each}}\r\n }'>\r\n\tmy k-tester\r\n\t{{test}}\r\n\t{{@root.title}}\r\n</div>\r\n", "parsed": { "orig": "---\r\nkVar: test\r\n---\r\n\r\n{{! ---\r\ngeneral: k-tester\r\n============================================\r\n\r\nRequirements:\r\n- (only hbs)\r\n\r\nOptions:\r\n- testerClasses {String} - Modifier classes\r\n\r\nImportant Notes:\r\n\r\n--- }}\r\n\r\n\r\n<div class=\"k-tester{{#if testerClasses}} {{testerClasses}}{{/if}}\"\r\n data-js-module=\"tester\"\r\n data-js-options='{\r\n \t{{#each testerJsOptions}}\"{{optionsKey}}\": {{#unless optionsObject}}\"{{/unless}}{{{optionsValue}}}{{#unless optionsObject}}\"{{/unless}}{{#if @last}}{{else}}, {{/if}}{{/each}}\r\n }'>\r\n\tmy k-tester\r\n\t{{test}}\r\n\t{{@root.title}}\r\n</div>\r\n", "data": { "kVar": "test" }, "content": "\r\n\r\n{{! ---\r\ngeneral: k-tester\r\n============================================\r\n\r\nRequirements:\r\n- (only hbs)\r\n\r\nOptions:\r\n- testerClasses {String} - Modifier classes\r\n\r\nImportant Notes:\r\n\r\n--- }}\r\n\r\n\r\n<div class=\"k-tester{{#if testerClasses}} {{testerClasses}}{{/if}}\"\r\n data-js-module=\"tester\"\r\n data-js-options='{\r\n \t{{#each testerJsOptions}}\"{{optionsKey}}\": {{#unless optionsObject}}\"{{/unless}}{{{optionsValue}}}{{#unless optionsObject}}\"{{/unless}}{{#if @last}}{{else}}, {{/if}}{{/each}}\r\n }'>\r\n\tmy k-tester\r\n\t{{test}}\r\n\t{{@root.title}}\r\n</div>\r\n" } }, "s-tester": { "id": "s-tester", "assets": "../../", "ext": ".html", "srcExt": ".hbs", "basename": "s-tester.hbs", "filename": "s-tester", "dirname": "test/fixtures/partials/globals/tester", "destDir": "test/expected/", "destSubDir": "globals/tester", "destFile": "globals/tester/s-tester.html", "serverFile": "globals/tester/s-tester", "raw": "---\r\ntesting: lolo\r\n---\r\n{{! ---\r\ngeneral: s-tester\r\n============================================\r\n\r\nRequirements:\r\n- (only hbs)\r\n\r\nOptions:\r\n- testerClasses {String} - Modifier classes\r\n\r\nImportant Notes:\r\n\r\n--- }}\r\n\r\n\r\n<div class=\"s-tester{{#if testerClasses}} {{testerClasses}}{{/if}}\"\r\n data-js-module=\"tester\"\r\n data-js-options='{\r\n \t{{#each testerJsOptions}}\"{{optionsKey}}\": {{#unless optionsObject}}\"{{/unless}}{{{optionsValue}}}{{#unless optionsObject}}\"{{/unless}}{{#if @last}}{{else}}, {{/if}}{{/each}}\r\n }'>\r\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ab, alias blanditiis consectetur consequatur corporis culpa dolorem earum eos laudantium nobis nostrum officia officiis optio praesentium, quaerat quasi ullam vitae voluptatibus.\r\n</div>\r\n", "parsed": { "orig": "---\r\ntesting: lolo\r\n---\r\n{{! ---\r\ngeneral: s-tester\r\n============================================\r\n\r\nRequirements:\r\n- (only hbs)\r\n\r\nOptions:\r\n- testerClasses {String} - Modifier classes\r\n\r\nImportant Notes:\r\n\r\n--- }}\r\n\r\n\r\n<div class=\"s-tester{{#if testerClasses}} {{testerClasses}}{{/if}}\"\r\n data-js-module=\"tester\"\r\n data-js-options='{\r\n \t{{#each testerJsOptions}}\"{{optionsKey}}\": {{#unless optionsObject}}\"{{/unless}}{{{optionsValue}}}{{#unless optionsObject}}\"{{/unless}}{{#if @last}}{{else}}, {{/if}}{{/each}}\r\n }'>\r\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ab, alias blanditiis consectetur consequatur corporis culpa dolorem earum eos laudantium nobis nostrum officia officiis optio praesentium, quaerat quasi ullam vitae voluptatibus.\r\n</div>\r\n", "data": { "testing": "lolo" }, "content": "\r\n{{! ---\r\ngeneral: s-tester\r\n============================================\r\n\r\nRequirements:\r\n- (only hbs)\r\n\r\nOptions:\r\n- testerClasses {String} - Modifier classes\r\n\r\nImportant Notes:\r\n\r\n--- }}\r\n\r\n\r\n<div class=\"s-tester{{#if testerClasses}} {{testerClasses}}{{/if}}\"\r\n data-js-module=\"tester\"\r\n data-js-options='{\r\n \t{{#each testerJsOptions}}\"{{optionsKey}}\": {{#unless optionsObject}}\"{{/unless}}{{{optionsValue}}}{{#unless optionsObject}}\"{{/unless}}{{#if @last}}{{else}}, {{/if}}{{/each}}\r\n }'>\r\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ab, alias blanditiis consectetur consequatur corporis culpa dolorem earum eos laudantium nobis nostrum officia officiis optio praesentium, quaerat quasi ullam vitae voluptatibus.\r\n</div>\r\n" } }, "test": { "id": "test", "assets": "../", "ext": ".html", "srcExt": ".hbs", "basename": "test.hbs", "filename": "test", "dirname": "test/fixtures/partials/utilities", "destDir": "test/expected/", "destSubDir": "utilities", "destFile": "utilities/test.html", "serverFile": "utilities/test", "raw": "<div class=\"test\">\r\n\t{{{yield}}}\r\n</div>", "parsed": { "orig": "<div class=\"test\">\r\n\t{{{yield}}}\r\n</div>", "data": {}, "content": "<div class=\"test\">\r\n\t{{{yield}}}\r\n</div>" } } }, "pages": { "index": { "id": "index", "assets": "./", "ext": ".html", "srcExt": ".hbs", "basename": "index.hbs", "filename": "index", "dirname": "test/fixtures/pages", "destDir": "test/expected/", "destSubDir": "", "destFile": "index.html", "serverFile": "index", "raw": "---\r\ntitle: Build Better Prototypes with Veams\r\nmenuLink: Home\r\nsortOrder: 01\r\n---\r\n\r\n{{#extend \"lyt-default\"}}\r\n\t{{#content \"main\"}}\r\n\r\n\t\t{{title}}\r\n\t\t{{config.title}}\r\n\t\t<h3>Place your content here!</h3>\r\n\r\n\r\n\t\t{{> s-tester }}\r\n\t{{/content}}\r\n{{/extend}}\r\n", "parsed": { "orig": "---\r\ntitle: Build Better Prototypes with Veams\r\nmenuLink: Home\r\nsortOrder: 01\r\n---\r\n\r\n{{#extend \"lyt-default\"}}\r\n\t{{#content \"main\"}}\r\n\r\n\t\t{{title}}\r\n\t\t{{config.title}}\r\n\t\t<h3>Place your content here!</h3>\r\n\r\n\r\n\t\t{{> s-tester }}\r\n\t{{/content}}\r\n{{/extend}}\r\n", "data": { "title": "Build Better Prototypes with Veams", "menuLink": "Home", "sortOrder": 1 }, "content": "\r\n\r\n{{#extend \"lyt-default\"}}\r\n\t{{#content \"main\"}}\r\n\r\n\t\t{{title}}\r\n\t\t{{config.title}}\r\n\t\t<h3>Place your content here!</h3>\r\n\r\n\r\n\t\t{{> s-tester }}\r\n\t{{/content}}\r\n{{/extend}}\r\n" } }, "page-components": { "id": "page-components", "assets": "./", "ext": ".html", "srcExt": ".hbs", "basename": "page-components.hbs", "filename": "page-components", "dirname": "test/fixtures/pages", "destDir": "test/expected/", "destSubDir": "", "destFile": "page-components.html", "serverFile": "page-components", "raw": "---\r\ntitle: Build Better Prototypes with Veams\r\nmenuLink: Components\r\nsortOrder: 02\r\n---\r\n\r\n{{title}}\r\n\r\n{{#extend \"lyt-default\"}}\r\n\t{{#content \"main\"}}\r\n\r\n\t\t<h2>{{menuLink}}</h2>\r\n\r\n\t\t<h3>{{config.test}}</h3>\r\n\r\n\t\t{{#each tester.data}}\r\n\t\t\t<h4>{{name}}</h4>\r\n\t\t\t<p>{{text}}</p>\r\n\t\t{{/each}}\r\n\r\n\t\t{{#with config}}\r\n\t\t\t{{> k-tester}}\r\n\t\t{{/with}}\r\n\r\n\t\t{{! WrapWith START: }}\r\n\t\t{{#times 5}}\r\n\t\t\ttest {{random}}\r\n\t\t{{/times}}\r\n\t\t{{! WrapWith END: }}\r\n\r\n\t{{/content}}\r\n{{/extend}}\r\n\r\n", "parsed": { "orig": "---\r\ntitle: Build Better Prototypes with Veams\r\nmenuLink: Components\r\nsortOrder: 02\r\n---\r\n\r\n{{title}}\r\n\r\n{{#extend \"lyt-default\"}}\r\n\t{{#content \"main\"}}\r\n\r\n\t\t<h2>{{menuLink}}</h2>\r\n\r\n\t\t<h3>{{config.test}}</h3>\r\n\r\n\t\t{{#each tester.data}}\r\n\t\t\t<h4>{{name}}</h4>\r\n\t\t\t<p>{{text}}</p>\r\n\t\t{{/each}}\r\n\r\n\t\t{{#with config}}\r\n\t\t\t{{> k-tester}}\r\n\t\t{{/with}}\r\n\r\n\t\t{{! WrapWith START: }}\r\n\t\t{{#times 5}}\r\n\t\t\ttest {{random}}\r\n\t\t{{/times}}\r\n\t\t{{! WrapWith END: }}\r\n\r\n\t{{/content}}\r\n{{/extend}}\r\n\r\n", "data": { "title": "Build Better Prototypes with Veams", "menuLink": "Components", "sortOrder": 2 }, "content": "\r\n\r\n{{title}}\r\n\r\n{{#extend \"lyt-default\"}}\r\n\t{{#content \"main\"}}\r\n\r\n\t\t<h2>{{menuLink}}</h2>\r\n\r\n\t\t<h3>{{config.test}}</h3>\r\n\r\n\t\t{{#each tester.data}}\r\n\t\t\t<h4>{{name}}</h4>\r\n\t\t\t<p>{{text}}</p>\r\n\t\t{{/each}}\r\n\r\n\t\t{{#with config}}\r\n\t\t\t{{> k-tester}}\r\n\t\t{{/with}}\r\n\r\n\t\t{{! WrapWith START: }}\r\n\t\t{{#times 5}}\r\n\t\t\ttest {{random}}\r\n\t\t{{/times}}\r\n\t\t{{! WrapWith END: }}\r\n\r\n\t{{/content}}\r\n{{/extend}}\r\n\r\n" } } }, "customTypes": [], "config": { "title": "v6-7-0", "test": "trolo" }, "tester": { "data": [ { "name": "lorem", "text": "Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane." }, { "name": "Ipsum", "text": "Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane." } ] } }