-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (37 loc) · 1.79 KB
/
index.html
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
54
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Welcome to Maverick</title>
<link rel="stylesheet" href="demo/demo.css" media="all">
</head>
<body>
<h1>★ Maverick - a small Javascript-based MVC framework</h1>
<h2>Maverick is right for you if...</h2>
<ul>
<li>You want a framework with a small footprint.</li>
<li>You need exceptional performance.</li>
<li>You want a framework that requires nearly zero configuration.</li>
<li>You want a framework that applies strict variable scoping and access policies.</li>
<li>You want a framework that does not require you to adhere to restrictive coding rules.</li>
</ul>
<a href="demo" class="launcher">Launch demo application</a>
<h2>5 globally scoped variables</h2>
<ul>
<li>$models</li>
<li>$views</li>
<li>$controllers</li>
<li>$routes</li>
<li>$uri</li>
</ul>
<p>These variables are used to start and stop $views and $controllers, access the state of the application (mostly derived from the URI), and to create and remove $routes.</p>
<h2>How to get started?</h2>
<p><a href="http://maverick.round.ee">Visit the Maverick website for information on Getting started as well as full documentation.</a></p>
<h2>Footnotes and licence</h2>
<p><small>
The included demo application uses jQuery 1.4.4 library which is licenced under MIT licence.<br>
Maverick uses some of jQuery's functionality but can easily be adopted for use with any other Javascript library.</p>
<p>Copyright (c) 2010 Martin Tajur, Round Ltd. ([email protected]). Maverick is licensed under the MIT licence: <a href="http://www.opensource.org/licenses/mit-license.php">http://www.opensource.org/licenses/mit-license.php</a></p>
<p><a href="http://maverick.round.ee">Visit the Maverick website</a></p>
</body>
</html>