Advertisement
Guest User

indexhtml

a guest
Jun 24th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.09 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3. Copyright (c) 2012-2016 Adobe Systems Incorporated. All rights reserved.
  4.  
  5. Licensed to the Apache Software Foundation (ASF) under one
  6. or more contributor license agreements. See the NOTICE file
  7. distributed with this work for additional information
  8. regarding copyright ownership. The ASF licenses this file
  9. to you under the Apache License, Version 2.0 (the
  10. "License"); you may not use this file except in compliance
  11. with the License. You may obtain a copy of the License at
  12.  
  13. http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15. Unless required by applicable law or agreed to in writing,
  16. software distributed under the License is distributed on an
  17. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  18. KIND, either express or implied. See the License for the
  19. specific language governing permissions and limitations
  20. under the License.
  21. -->
  22. <html>
  23.  
  24. <head>
  25. <meta charset="utf-8" />
  26. <meta name="format-detection" content="telephone=no" />
  27. <meta name="msapplication-tap-highlight" content="no" />
  28. <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
  29. <!-- This is a wide open CSP declaration. To lock this down for production, see below. -->
  30. <meta http-equiv="Content-Security-Policy" content="default-src * 'unsafe-inline'; style-src 'self' 'unsafe-inline'; media-src *" />
  31. <!-- Good default declaration:
  32. * gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication
  33. * https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly
  34. * Disables use of eval() and inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
  35. * Enable inline JS: add 'unsafe-inline' to default-src
  36. * Enable eval(): add 'unsafe-eval' to default-src
  37. * Create your own at http://cspisawesome.com
  38. -->
  39. <!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: 'unsafe-inline' https://ssl.gstatic.com; style-src 'self' 'unsafe-inline'; media-src *" /> -->
  40. <!-- Path to Framework7 Library CSS-->
  41. <link rel="stylesheet" href="css/framework7.ios.min.css">
  42. <link rel="stylesheet" href="css/framework7.ios.colors.min.css">
  43. <!-- Path to your custom app styles-->
  44. <link rel="stylesheet" href="css/my-app.css">
  45. <title>Hello World</title>
  46. </head>
  47.  
  48.  
  49. <body>
  50. <div class="views">
  51. <div class="view view-main">
  52. <div class="pages navbar-fixed toolbar-fixed">
  53. <!--This is where my page content begins -->
  54. <div class="page" data-page="index">
  55.  
  56. <div class="navbar">
  57. <div class="navbar-inner">
  58. <div class="center">BLTG Volume I</div>
  59. </div>
  60. </div>
  61.  
  62. <div class="toolbar">
  63. <div class="toolbar-inner">
  64. <a href=# class="link">Link 1</a>
  65. <a href=# class="link">Link 2</a>
  66. <a href=# class="link">Link 3</a>
  67. </div>
  68. </div>
  69.  
  70. <div class="page-content">
  71. <p>Bible Logos The Game: Volume 1</p>
  72. <p>Puzzle Word-Lists</p>
  73. <a href="#" class="link">Just for fun</a>
  74. </div>
  75. </div>
  76.  
  77. <div class="page cached" data-page="about">
  78. Hello eveyone this is our about page
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83.  
  84. <!-- Path to Framework7 Library JS-->
  85. <script type="text/javascript" src="js/framework7.min.js"></script>
  86. <!-- Path to your app js-->
  87. <script type="text/javascript" src="js/my-app.js"></script>
  88.  
  89. <script type="text/javascript" src="cordova.js"></script>
  90. <script type="text/javascript" src="js/index.js"></script>
  91. <script type="text/javascript">
  92. app.initialize();
  93. </script>
  94. </body>
  95.  
  96. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement