-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathlearn.json
53 lines (53 loc) · 2.99 KB
/
learn.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"lazo": {
"name": "LazoJS",
"description": "An isomorphic JavaScript framework built on Node.js that allows front-end developers to easily create a 100% SEO compliant, component MVC structured web application with an optimized first page load.",
"homepage": "lazojs.org",
"link_groups": [{
"heading": "Implementations",
"links": [ {
"name": "Single Component",
"url": "/"
}, {
"name": "Multiple Components",
"url": "/multiple"
}, {
"name": "Layout",
"url": "/layout"
}, {
"name": "Child Views",
"url": "/child-views"
}]
}, {
"heading": "Official Resources",
"links": [{
"name": "About LazoJS",
"url": "http://lazojs.org/about"
}, {
"name": "TodoMVC Source",
"url": "https://github.com/lazojs/lazo-todomvc"
}, {
"name": "API Reference",
"url": "http://lazojs.org/topic/api"
}, {
"name": "Developer Guide",
"url": "http://lazojs.org/topic/guide"
}, {
"name": "Blog",
"url": "http://lazojs.org/blog"
}]
}, {
"heading": "Community",
"links": [{
"name": "LazoJS on Twitter",
"url": "https://twitter.com/lazojs"
}, {
"name": "LazoJS Google Group",
"url": "https://groups.google.com/forum/#!forum/lazojs"
}]
}]
},
"templates": {
"todomvc": "<header> <h3><%= name %></h3> <span class=\"source-links\"> <% if (typeof examples !== 'undefined') { %> <% examples.forEach(function (example) { %> <h5><%= example.name %></h5> <% if (!location.href.match(example.url + '/')) { %> <a class=\"demo-link\" data-type=\"<%= example.type === 'backend' ? 'external' : 'local' %>\" href=\"<%= example.url %>\">Demo</a>, <% } if (example.type === 'backend') { %><a href=\"<%= example.source_url %>\"><% } else { %><a href=\"https://github.com/tastejs/todomvc/tree/gh-pages/<%= example.source_url ? example.source_url : example.url %>\"><% } %>Source</a> <% }); %> <% } %> </span> </header> <hr> <blockquote class=\"quote speech-bubble\"> <p><%= description %></p> <footer> <a href=\"http://<%= homepage %>\"><%= name %></a> </footer> </blockquote> <% if (typeof link_groups !== 'undefined') { %> <hr> <% link_groups.forEach(function (link_group) { %> <h4><%= link_group.heading %></h4> <ul> <% link_group.links.forEach(function (link) { %> <li> <a href=\"<%= link.url %>\"><%= link.name %></a> </li> <% }); %> </ul> <% }); %> <% } %> <footer> <hr> <em>If you have other helpful links to share, or find any of the links above no longer work, please <a href=\"https://github.com/tastejs/todomvc/issues\">let us know</a>.</em> </footer>"
}
}