Commit 7495e02261ac0cd081f131c9b705613fb033e69e

Small meta fixes

  - remove example.json (not needed anymore)
  - updated ISSUES.md and humans.txt
ISSUES.md
(0 / 5)
  
11Current Issues with Mouchak
22---------------------------
33
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
94- when plugins are used to manipulate existing images, event listeners might not work properly.
105This is beacuse there is no wrapper element around it. Hence plugins that will listen to the parent
116element of the image, will eventually end up listening to the page(that being directly the parent element
humans.txt
(3 / 5)
  
66 Anon Ray <rayanon004@gmail.com> (@rayanon)
77 Arvind Khadri <arvindkhadri@gmail.com> (@arvindkhadri)
88
9# THANKS
10
11 <name>
12
139# TECHNOLOGY COLOPHON
1410
1511 HTML5, CSS3
1313 Underscore.js, Backbone.js
1414 Bootstrap
1515
16 Python, Flask
16 Python, Flask, PyMongo
17
18 MongoDB
  
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]