index.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>%%WEBINTF_TITLE%%</title>
  6. <link rel="stylesheet" href="style.css">
  7. <script type="text/javascript" src="jquery-1.10.1.min.js"></script>
  8. <script type="text/javascript" src="jquery.ui.widget.js"></script>
  9. <script type="text/javascript" src="jquery.iframe-transport.js"></script>
  10. <script type="text/javascript" src="jquery.fileupload.js"></script>
  11. <script type="text/javascript" src="main.js"></script>
  12. </head>
  13. <body>
  14. <div id="header">
  15. <div class="nav">
  16. <a class="btn linkBtn" href="http://www.videolan.org" target="_blank"><div class="icon"></div></a>
  17. <div class="btn uploadBtn">
  18. <input id="fileupload" type="file" name="files[]" data-url="upload.json" multiple>
  19. +
  20. </div>
  21. </div>
  22. </div>
  23. <div class="main">
  24. <div class="uploads">
  25. <ul></ul>
  26. </div>
  27. <div class="messageUpload">
  28. <h1>%%WEBINTF_DROPFILES%%</h1>
  29. <p>%%WEBINTF_DROPFILES_LONG%%</p>
  30. </div>
  31. <hr>
  32. <div class="messageDownload">
  33. <h1>%%WEBINTF_DOWNLOADFILES%%</h1>
  34. <p>%%WEBINTF_DOWNLOADFILES_LONG%%</p>
  35. </div>
  36. <ul class="main downloads cf">
  37. %%FILES%%
  38. </ul>
  39. <div id="footer">
  40. <p>VLC for iOS is free, open-source software published by <a href="http://www.videolan.org" target="_blank">VideoLAN</a>. <br />Modification and redistribution is subject to both the <a href="http://opensource.org/licenses/GPL-2.0" target="_blank">GPLv2 (or later)</a> and the <a href="http://opensource.org/licenses/MPL-2.0" target="_blank">MPLv2</a> as well as further rights reserved by the VideoLAN non-profit organization.<br />You can find more information about licensing in the About dialog within the app.<br />VideoLAN, VLC and VLC media player are internationally registered trademarks of the <a href="http://www.videolan.org/videolan/" target="_blank">VideoLAN non-profit organization</a>.</p>
  41. </div>
  42. </div>
  43. <div id="overlay" class="">
  44. <div id="modal">
  45. <ul class="downloads cf">
  46. <!-- content of div.content goes here -->
  47. </ul>
  48. </div>
  49. </div>
  50. </body>
  51. </html>