Advertisement
arijulianto

index.html framework7-2

Jan 20th, 2018
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <!-- Required meta tags-->
  5.     <meta charset="utf-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui, viewport-fit=cover">
  7.     <meta name="apple-mobile-web-app-capable" content="yes">
  8.     <!-- Color theme for statusbar -->
  9.     <meta name="theme-color" content="#2196f3">
  10.     <!-- Your app title -->
  11.     <title>My App</title>
  12.     <!-- Path to Framework7 Library CSS, Material Theme -->
  13.     <link rel="stylesheet" href="dist/css/framework7.css">
  14.     <link rel="stylesheet" href="dist/css/framework7.md.css">
  15.     <link rel="stylesheet" href="dist/css/framework7.md.colors.css">
  16.     <!-- Path to your custom app styles-->
  17.     <link rel="stylesheet" href="css/index.css">
  18.   </head>
  19.   <body>
  20.     <!-- App root element -->
  21.     <div id="app">
  22.       <!-- Statusbar overlay -->
  23.       <div class="statusbar"></div>
  24.  
  25.       <!-- Your main view, should have "view-main" class -->
  26.       <div class="view view-main">
  27.         <!-- Initial Page, "data-name" contains page name -->
  28.         <div data-name="home" class="page">
  29.  
  30.           <!-- Top Navbar -->
  31.           <div class="navbar">
  32.             <div class="navbar-inner">
  33.               <div class="title">Awesome App</div>
  34.             </div>
  35.           </div>
  36.  
  37.  
  38.           <!-- Scrollable page content -->
  39.           <div class="page-content">
  40.             <p>Page content goes here</p>
  41.             <!-- Link to another page -->
  42.             <a href="/about/">About app</a>
  43.           </div>
  44.         </div>
  45.       </div>
  46.     </div>
  47.     <!-- Path to Framework7 Library JS-->
  48.     <script type="text/javascript" src="dist/js/framework7.min.js"></script>
  49.     <!-- Path to your app js-->
  50.     <script type="text/javascript" src="js/index.js"></script>
  51.   </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement