Commit 7495e02261ac0cd081f131c9b705613fb033e69e
Small meta fixes
- remove example.json (not needed anymore)
- updated ISSUES.md and humans.txt
| | | | 1 | Current Issues with Mouchak | 1 | Current Issues with Mouchak |
---|
2 | --------------------------- | 2 | --------------------------- |
---|
3 | | 3 | |
---|
4 | | | |
---|
5 | - In some pages nav links are not there....each page has its own nav links if they have children, if they dont they **should** get its parents nav link(highest priority) | | - In some pages nav links are not there....each page has its own nav links if they have children, if they dont they **should** get its parents nav link(highest priority) |
---|
6 | | | |
---|
7 | - a config option to disable nav ? | | - a config option to disable nav ? |
---|
8 | | | |
---|
9 | - when plugins are used to manipulate existing images, event listeners might not work properly. | 4 | - when plugins are used to manipulate existing images, event listeners might not work properly. |
---|
10 | This is beacuse there is no wrapper element around it. Hence plugins that will listen to the parent | 5 | This is beacuse there is no wrapper element around it. Hence plugins that will listen to the parent |
---|
11 | element of the image, will eventually end up listening to the page(that being directly the parent element | 6 | element of the image, will eventually end up listening to the page(that being directly the parent element |
---|
| | | | 6 | Anon Ray <rayanon004@gmail.com> (@rayanon) | 6 | Anon Ray <rayanon004@gmail.com> (@rayanon) |
---|
7 | Arvind Khadri <arvindkhadri@gmail.com> (@arvindkhadri) | 7 | Arvind Khadri <arvindkhadri@gmail.com> (@arvindkhadri) |
---|
8 | | 8 | |
---|
9 | # THANKS | | # THANKS |
---|
10 | | | |
---|
11 | <name> | | <name> |
---|
12 | | | |
---|
13 | # TECHNOLOGY COLOPHON | 9 | # TECHNOLOGY COLOPHON |
---|
14 | | 10 | |
---|
15 | HTML5, CSS3 | 11 | HTML5, CSS3 |
---|
… | | … | |
---|
13 | Underscore.js, Backbone.js | 13 | Underscore.js, Backbone.js |
---|
14 | Bootstrap | 14 | Bootstrap |
---|
15 | | 15 | |
---|
16 | Python, Flask | | Python, Flask |
---|
| | 16 | Python, Flask, PyMongo | | | 17 | |
---|
| | 18 | MongoDB |
---|
| | | | 1 | [ | | [ |
---|
2 | { | | { |
---|
3 | "name": "index", | | "name": "index", |
---|
4 | "children": ["Motivation", "The JSON file"], | | "children": ["Motivation", "The JSON file"], |
---|
5 | "title": "Mouchak", | | "title": "Mouchak", |
---|
6 | "content": [ | | "content": [ |
---|
7 | { | | { |
---|
8 | "type": "image", | | "type": "image", |
---|
9 | "src": "/static/img/mouchak.jpg" | | "src": "/static/img/mouchak.jpg" |
---|
10 | }, | | }, |
---|
11 | { | | { |
---|
12 | "type": "text", | | "type": "text", |
---|
13 | "title": "What's this?", | | "title": "What's this?", |
---|
14 | "data": "<p> Mouchak is a Javascript framework for building websites quickly.</p><p>It takes the components and the content of the website in a JSON format. The content in the JSON can be of type text or multimedia like images and videos.</p> <p>It also has the capabilities to load external JS and CSS files to customize the website.</p><br><b>PS</b>: Incase you are wondering, Mouchak is a Bengali word, which means Honeycomb." | | "data": "<p> Mouchak is a Javascript framework for building websites quickly.</p><p>It takes the components and the content of the website in a JSON format. The content in the JSON can be of type text or multimedia like images and videos.</p> <p>It also has the capabilities to load external JS and CSS files to customize the website.</p><br><b>PS</b>: Incase you are wondering, Mouchak is a Bengali word, which means Honeycomb." |
---|
15 | } | | } |
---|
16 | ] | | ] |
---|
17 | }, | | }, |
---|
18 | { | | { |
---|
19 | "name": "Motivation", | | "name": "Motivation", |
---|
20 | "title": "Motivation", | | "title": "Motivation", |
---|
21 | "children": [], | | "children": [], |
---|
22 | "content": [ | | "content": [ |
---|
23 | { | | { |
---|
24 | "type": "text", | | "type": "text", |
---|
25 | "title": "Why Mouchak?", | | "title": "Why Mouchak?", |
---|
26 | "data": "Explanation of why we built this framework..." | | "data": "Explanation of why we built this framework..." |
---|
27 | } | | } |
---|
28 | ] | | ] |
---|
29 | }, | | }, |
---|
30 | { | | { |
---|
31 | "name": "The JSON file", | | "name": "The JSON file", |
---|
32 | "title": "The JSON format", | | "title": "The JSON format", |
---|
33 | "children": [], | | "children": [], |
---|
34 | "content": [ | | "content": [ |
---|
35 | { | | { |
---|
36 | "type": "text", | | "type": "text", |
---|
37 | "title": "", | | "title": "", |
---|
38 | "data": "{ } Explain the JSON format here.." | | "data": "{ } Explain the JSON format here.." |
---|
39 | } | | } |
---|
40 | ] | | ] |
---|
41 | } | | } |
---|
42 | ] | | ] |
---|