Advertisement
peed

The index file

Sep 3rd, 2011
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.19 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
  5. <title>Page Title</title>
  6. <link rel="stylesheet" type="text/css" media="all" href="http://mywebsite.com/wp-content/themes/mywebsitetheme/style.css" />
  7. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.css" />
  8. <script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
  9. <script src="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.js"></script>
  10. <meta name='robots' content='noindex,nofollow' />
  11. <link rel='index' title='Page Title' href='http://mywebsite.com/' />
  12.  
  13. </head>
  14. <body>
  15.  
  16. <div id="home" data-role="page" data-theme="a">
  17.  
  18.     <div id="header" data-role="header">
  19.         <h1>Header Title</h1>
  20.         <a href="#" id="superbutton" data-icon="plus" class="ui-btn-right" data-role="button" data-inline="true"></a>
  21.     </div> <!-- end #header -->
  22.  
  23.     <div data-role="content" id="content">
  24.         <p>Page content goes here.</p>
  25.     </div> <!-- end #content -->
  26.  
  27.     <div data-role="footer">
  28.         <h4>Page Footer</h4>
  29.     </div> <!-- end #footer -->
  30.  
  31. </div> <!-- end #home -->
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement