test.html 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>KitchenSink - Lungo 2.0</title>
  6. <meta name="description" content="">
  7. <meta name="author" content="Javier Jiménez Villar (@soyjavi)">
  8. <meta name="HandheldFriendly" content="True">
  9. <meta name="MobileOptimized" content="320">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  11. <meta name="apple-mobile-web-app-capable" content="yes">
  12. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  13. <meta name="format-detection" content="telephone=no">
  14. <meta http-equiv="cleartype" content="on">
  15. <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://lungo.tapquo.com/resources/icon@2x.png">
  16. <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://lungo.tapquo.com/resources/icon-72.png">
  17. <link rel="apple-touch-icon-precomposed" href="http://lungo.tapquo.com/resources/icon.png">
  18. <link rel="apple-touch-startup-image" href="http://lungo.tapquo.com/resources/default.png">
  19. <!-- Main Stylesheet -->
  20. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.base.css">
  21. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.layout.css">
  22. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.layout.nav.css">
  23. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.layout.aside.css">
  24. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.layout.article.css">
  25. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.layout.list.css">
  26. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.layout.grid.css">
  27. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.widgets.css">
  28. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.widgets.splash.css">
  29. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.widgets.button.css">
  30. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.widgets.form.css">
  31. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.widgets.colour.css">
  32. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.widgets.icon.css">
  33. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.widgets.icon.brand.css">
  34. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.widgets.loading.css">
  35. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.widgets.notification.css">
  36. <link rel="stylesheet" href="../../src/stylesheets/css/Lungo.theme.default.css">
  37. <!--
  38. <link rel="stylesheet" href="../../release/lungo.css">
  39. <link rel="stylesheet" href="../../release/lungo.icon.css">
  40. <link rel="stylesheet" href="../../release/lungo.icon.brand.css">
  41. <link rel="stylesheet" href="../../release/lungo.theme.default.css">
  42. -->
  43. <!-- App Stylesheet -->
  44. <link rel="stylesheet" href="stylesheets/app.css">
  45. </head>
  46. <body class="app">
  47. <section id="layout" data-transition="slide">
  48. <header data-title="Layout" class="extended">
  49. <nav class="button">
  50. <a href="#back" data-router="section" data-label="back"></a>
  51. </nav>
  52. <nav class="right ">
  53. <a href="#splash" data-router="section" data-icon="user" data-count="3" ></a>
  54. </nav>
  55. </header>
  56. <nav class="groupbar">
  57. <a href="#layout-art1" data-router="article" class="current" data-label="Profile"></a>
  58. <a href="#layout-art2" data-router="article" data-label="Inbox" data-count="3"></a>
  59. <a href="#layout-art3" data-router="article" data-label="Map"></a>
  60. <a href="#layout-art4" data-router="article" data-label="Settings"></a>
  61. </nav>
  62. <footer>
  63. <nav class="with-labels">
  64. <a href="#layout-art1" data-router="article" data-label="Home" class="current" data-icon="home"></a>
  65. <a href="#layout-art2" data-router="article" data-icon="inbox" data-count="2"></a>
  66. <a href="#layout-art3" data-router="article" data-icon="user"></a>
  67. <a href="#layout-art4" data-router="article" data-icon="settings"></a>
  68. </nav>
  69. </footer>
  70. <article id="layout-art1" class="padding">
  71. <form>
  72. <label>text</label>
  73. <input type="text"/>
  74. <!--
  75. <label>text.disabled</label>
  76. <input type="text" disabled/>
  77. <label>password</label>
  78. <input type="password"/>
  79. <label>textarea</label>
  80. <textarea></textarea>
  81. -->
  82. <label>Example of select</label>
  83. <label class="select">
  84. <select class="custom">
  85. <option value="1">One</option>
  86. <option value="2">Two</option>
  87. <option value="3">Three</option>
  88. </select>
  89. </label>
  90. <label>Example of progress</label>
  91. <div id="progress-normal" data-progress="25%"></div>
  92. <label>Example of range</label>
  93. <input type="range" placeholder="type your name" />
  94. <input type="range" min="0" max="1" class="checkbox left" value="0">
  95. <input type="range" min="0" max="1" class="checkbox right active" value="1">
  96. </form>
  97. &nbsp;
  98. <form>
  99. <a href="#" class="button big theme" data-label="Boton Azul" data-icon="check"></a>
  100. </form>
  101. </article>
  102. <article id="layout-art2"></article>
  103. <article id="layout-art3"></article>
  104. <article id="layout-art4"></article>
  105. </section>
  106. <!-- Lungo dependencies -->
  107. <script src="../../src/lib/quo.debug.js"></script>
  108. <!--
  109. <script src="../../release/lungo.js"></script>
  110. -->
  111. <script src="../../src/Lungo.js"></script>
  112. <script src="../../src/Lungo.init.js"></script>
  113. <script src="../../src/Lungo.Core.js"></script>
  114. <script src="../../src/Lungo.Dom.js"></script>
  115. <script src="../../src/Lungo.Service.js"></script>
  116. <script src="../../src/Lungo.Constants.js"></script>
  117. <script src="../../src/Lungo.Element.js"></script>
  118. <script src="../../src/Lungo.Events.js"></script>
  119. <script src="../../src/Lungo.Notification.js"></script>
  120. <script src="../../src/router/Lungo.Router.js"></script>
  121. <script src="../../src/router/Lungo.Router.History.js" ></script>
  122. <script src="../../src/view/Lungo.View.Resize.js"></script>
  123. <script src="../../src/view/Lungo.View.Article.js" ></script>
  124. <script src="../../src/view/Lungo.View.Aside.js" ></script>
  125. <script src="../../src/view/Lungo.View.Element.js"></script>
  126. <script src="../../src/data/Lungo.Data.Cache.js"></script>
  127. <script src="../../src/data/Lungo.Data.Sql.js"></script>
  128. <script src="../../src/data/Lungo.Data.Storage.js"></script>
  129. <script src="../../src/attributes/Lungo.Attributes.Data.js"></script>
  130. <script src="../../src/Lungo.Fallback.js"></script>
  131. <script src="../../src/boot/Lungo.Boot.Resources.js" ></script>
  132. <script src="../../src/boot/Lungo.Boot.Stats.js" ></script>
  133. <script src="../../src/boot/Lungo.Boot.Layout.js"></script>
  134. <script src="../../src/boot/Lungo.Boot.Events.js"></script>
  135. <script src="../../src/boot/Lungo.Boot.Data.js"></script>
  136. <script src="../../src/boot/Lungo.Boot.Section.js"></script>
  137. <script src="../../src/boot/Lungo.Boot.Article.js"></script>
  138. <!-- LungoJS - Sandbox App -->
  139. <script>
  140. Lungo.init();
  141. </script>
  142. </body>
  143. </html>