Commit 7495e02261ac0cd081f131c9b705613fb033e69e
- Diff rendering mode:
- inline
- side by side
ISSUES.md
(0 / 5)
  | |||
1 | 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) | ||
6 | |||
7 | - a config option to disable nav ? | ||
8 | |||
9 | 4 | - when plugins are used to manipulate existing images, event listeners might not work properly. | |
10 | 5 | This is beacuse there is no wrapper element around it. Hence plugins that will listen to the parent | |
11 | 6 | element of the image, will eventually end up listening to the page(that being directly the parent element |
humans.txt
(3 / 5)
  | |||
6 | 6 | Anon Ray <rayanon004@gmail.com> (@rayanon) | |
7 | 7 | Arvind Khadri <arvindkhadri@gmail.com> (@arvindkhadri) | |
8 | 8 | ||
9 | # THANKS | ||
10 | |||
11 | <name> | ||
12 | |||
13 | 9 | # TECHNOLOGY COLOPHON | |
14 | 10 | ||
15 | 11 | HTML5, CSS3 | |
… | … | ||
13 | 13 | Underscore.js, Backbone.js | |
14 | 14 | Bootstrap | |
15 | 15 | ||
16 | Python, Flask | ||
16 | Python, Flask, PyMongo | ||
17 | |||
18 | MongoDB |
mouchak/static/example.json
(0 / 42)
  | |||
1 | [ | ||
2 | { | ||
3 | "name": "index", | ||
4 | "children": ["Motivation", "The JSON file"], | ||
5 | "title": "Mouchak", | ||
6 | "content": [ | ||
7 | { | ||
8 | "type": "image", | ||
9 | "src": "/static/img/mouchak.jpg" | ||
10 | }, | ||
11 | { | ||
12 | "type": "text", | ||
13 | "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." | ||
15 | } | ||
16 | ] | ||
17 | }, | ||
18 | { | ||
19 | "name": "Motivation", | ||
20 | "title": "Motivation", | ||
21 | "children": [], | ||
22 | "content": [ | ||
23 | { | ||
24 | "type": "text", | ||
25 | "title": "Why Mouchak?", | ||
26 | "data": "Explanation of why we built this framework..." | ||
27 | } | ||
28 | ] | ||
29 | }, | ||
30 | { | ||
31 | "name": "The JSON file", | ||
32 | "title": "The JSON format", | ||
33 | "children": [], | ||
34 | "content": [ | ||
35 | { | ||
36 | "type": "text", | ||
37 | "title": "", | ||
38 | "data": "{ } Explain the JSON format here.." | ||
39 | } | ||
40 | ] | ||
41 | } | ||
42 | ] |