index.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Media Browser</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
  6. <meta name="apple-mobile-web-app-capable" content="yes" />
  7. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  8. <link rel="icon" href="apple-touch-icon-114x114.png"/>
  9. <link rel="apple-touch-icon" href="apple-touch-icon-114x114.png"/>
  10. <link rel="apple-touch-startup-image" href="applesplashscreen.png" />
  11. <link rel="stylesheet" href="thirdparty/jquery.mobile110/jquery.mobile-1.1.0.min.css" />
  12. <link rel="stylesheet" href="thirdparty/jquery.mobile.iconpack/jqm-icon-pack-1.1.1-original.css" />
  13. <link rel="stylesheet" href="styles/site.css" />
  14. </head>
  15. <body>
  16. <div data-role="page" data-theme="c" id="folderPage" class="page folderPage">
  17. <div id="nowPlayingBar" class="nowPlayingBar ui-bar ui-bar-b"></div>
  18. <div class="header ui-bar-c ui-header">
  19. <h3 id="folderPageHeaderText" class="headerTextElement"></h3>
  20. <a id="btnParent" class="ui-btn-left" data-role="button" data-icon="back" href="#folderPage" style="display:none;" data-iconpos="notext"></a>
  21. <a id="btnHome" class="ui-btn-right" data-role="button" data-icon="home" href="#folderPage" data-iconpos="notext">Home</a>
  22. <a id="btnTools" class="ui-btn-right" data-role="button" data-icon="wrench" href="setup.html" data-iconpos="notext" data-rel="external" data-ajax="false">Setup</a>
  23. </div>
  24. <div id="pageContent">
  25. </div>
  26. </div>
  27. <div id="loadingAnimation">
  28. <div id="loadingAnimationInner"></div>
  29. </div>
  30. <script src="thirdparty/jquery-1.7.1.min.js"></script>
  31. <script src="thirdparty/jquery.mobile110/jquery.mobile-1.1.0.min.js"></script>
  32. <script src="scripts/controllers.js"></script>
  33. <script src="scripts/site.js"></script>
  34. </body>
  35. </html>