Advertisement
Guest User

Front Ent App

a guest
Oct 9th, 2013
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one
  4. or more contributor license agreements. See the NOTICE file
  5. distributed with this work for additional information
  6. regarding copyright ownership. The ASF licenses this file
  7. to you under the Apache License, Version 2.0 (the
  8. "License"); you may not use this file except in compliance
  9. with the License. You may obtain a copy of the License at
  10.  
  11. http://www.apache.org/licenses/LICENSE-2.0
  12.  
  13. Unless required by applicable law or agreed to in writing,
  14. software distributed under the License is distributed on an
  15. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. KIND, either express or implied. See the License for the
  17. specific language governing permissions and limitations
  18. under the License.
  19. -->
  20. <html>
  21. <head>
  22. <meta charset="utf-8" />
  23. <meta name="format-detection" content="telephone=no" />
  24. <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
  25. <link rel="stylesheet" type="text/css" href="css/index.css" />
  26.  
  27. <!-- Use Ubuntu Cordova -->
  28. <script language="javascript" type="text/javascript" src="file:///usr/share/cordova-ubuntu-2.8/www/cordova-2.8.js"></script>
  29.  
  30. <!-- Ubuntu UI Style imports - Ambiance theme -->
  31. <link href="/usr/share/ubuntu-html5-theme/0.1/ambiance/css/appTemplate.css" rel="stylesheet" type="text/css" />
  32.  
  33. <!-- Ubuntu UI javascript imports - Ambiance theme -->
  34. <script src="/usr/share/ubuntu-html5-theme/0.1/ambiance/js/fast-buttons.js"></script>
  35. <script src="/usr/share/ubuntu-html5-theme/0.1/ambiance/js/core.js"></script>
  36. <script src="/usr/share/ubuntu-html5-theme/0.1/ambiance/js/buttons.js"></script>
  37. <script src="/usr/share/ubuntu-html5-theme/0.1/ambiance/js/dialogs.js"></script>
  38. <script src="/usr/share/ubuntu-html5-theme/0.1/ambiance/js/pagestacks.js"></script>
  39.  
  40. <!-- Application script -->
  41. <script src="app.js"></script>
  42.  
  43.  
  44. <title>Wikipedia App</title>
  45. </head>
  46.  
  47. <body>
  48.  
  49.  
  50. <div data-role="page">
  51.  
  52. <header data-role="header">
  53. <nav data-role="navbar" class="tabs" >
  54. <div class="tabs-inner">
  55. <h1 class="tab-item">Wikipedia App</h1>
  56. <form>
  57. <input type="text" id="wikisearch" value="Search At Wikipedia">
  58. <input type="submit" onclick="search()" value="Submit Search">
  59. </form>
  60. </div>
  61. </nav>
  62. </header>
  63.  
  64. <div data-role="content">
  65. <div data-role="pagestack">
  66. <div data-role="page" id="main">
  67. </div>
  68. </div>
  69. </div>
  70. <div data-role="dialog" id="loading">
  71. <section>
  72. <h1>Apache Cordova Loading</h1>
  73. <progress></progress>
  74. </section>
  75. </div>
  76.  
  77. <div data-role="dialog" id="deviceready">
  78. <section>
  79. <h1>Deviceready event received</h1>
  80. <button data-role="button" id="devicereadyOK" class="success">OK</button>
  81. </section>
  82. </div>
  83. </div>
  84. </body>
  85. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement