| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <!doctype html>
- <html manifest="APP.appcache">
- <head>
- <meta charset="utf-8">
- <title>ToDo.js with LungoJS</title>
- <meta name="description" content="">
- <meta name="author" content="Javier Jiménez Villar (@soyjavi)">
- <!-- Mobile viewport optimization http://goo.gl/b9SaQ -->
- <meta name="HandheldFriendly" content="True">
- <meta name="MobileOptimized" content="320">
- <meta http-equiv="cleartype" content="on">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <!-- For iPhone 4 with high-resolution Retina display: -->
- <link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/images/icon@2x.png">
- <link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/images/icon-72.png">
- <link rel="apple-touch-icon-precomposed" href="assets/images/icon.png">
- <link rel="apple-touch-startup-image" href="assets/images/default.png">
- <!-- Main Stylesheet -->
- <link rel="stylesheet" href="../../release/lungo-1.2.min.css">
- <link rel="stylesheet" href="../../release/lungo.theme.default.css">
- <!-- Sugars :) -->
- <link rel="stylesheet" href="assets/sugars/lungo.sugar.growl.min.css">
- </head>
- <body class="app">
- <section id="login">
- <article class="splash indented">
- <div>
- <h1>ToDo.<span }
- >js<span></h1>
- <input type="text" placeholder="Type your user" />
- <input type="password" placeholder="Type your password" />
- <a href="#" id="btnLogin" class="button big" data-icon="key">Test Demo!</a>
- <div class="copyright">Copyright TapQuo Inc, 2011</div>
- </div>
- </article>
- </section>
- <section id="main">
- <header data-title="ToDo.js">
- <nav class="right">
- <a href="#new" data-target="section" class="active" data-icon="plus"><abbr>New Task</abbr></a>
- </nav>
- </header>
- <article id="pending" class="list"></article>
- <article id="done" class="list"></article>
- <footer class="toolbar with-labels">
- <nav>
- <a href="#pending" data-target="article" class="current" data-label="Pending" data-icon="folder"></a>
- <a href="#done" data-target="article" data-label="Done" data-icon="check"></a>
- </nav>
- </footer>
- </section>
- <section id="view">
- <header data-title="View" >
- <nav class="left">
- <a href="#back" data-target="section" class="current" data-icon="left"><abbr>Back</abbr></a>
- </nav>
- <nav class="right">
- <a href="#" id="btnDeleteTodo" class="active" data-icon="trash"><abbr>Delete</abbr></a>
- </nav>
- </header>
- <article class="list indented">
- <ul class="form">
- <li class="tip dark" data-icon="pencil small">Edit ToDo</li>
- <li class="dark">
- <label>Name</label>
- <input type="text" id="txtEditName" placeholder="Input text"/>
- <label>Description</label>
- <textarea id="txtEditDescription" placeholder="Textarea sample"></textarea>
- </li>
- <a href="#" id="btnUpdateTodo" class="button big" data-icon="pencil">Update</a>
- <a href="#" id="btnDoneTodo" class="button big red" data-icon="check">Done</a>
- </ul>
- </article>
- </section>
- <section id="new">
- <header data-title="New ToDo">
- <nav>
- <a href="#back" data-target="section" class="current" data-icon="left"><abbr>Back</abbr></a>
- </nav>
- </header>
- <article class="list indented">
- <ul class="form">
- <li>
- <label>Name</label>
- <input type="text" id="txtNewName" placeholder="Input text"/>
- </li>
- <li>
- <label>Description</label>
- <textarea id="txtNewDescription" placeholder="Textarea sample"></textarea>
- </li>
- <a href="#" id="btnNewTodo" class="button big" data-icon="check">Add ToDo</a>
- </ul>
- </article>
- </section>
- <!-- LungoJS (Production mode) -->
- <script src="../../release/lungo-1.2.packed.js"></script>
- <script src="assets/sugars/lungo.sugar.growl.min.js"></script>
- <!-- LungoJS - Sandbox App -->
- <script src="app/app.js"></script>
- <script src="app/data.js"></script>
- <script src="app/events.js"></script>
- <script src="app/services.js"></script>
- <script src="app/view.js"></script>
- </body>
- </html>
|