12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>%%WEBINTF_TITLE%%</title>
- <link rel="stylesheet" href="style.css">
- <script type="text/javascript" src="jquery-1.10.1.min.js"></script>
- <script type="text/javascript" src="jquery.ui.widget.js"></script>
- <script type="text/javascript" src="jquery.iframe-transport.js"></script>
- <script type="text/javascript" src="jquery.fileupload.js"></script>
- <script type="text/javascript" src="main.js"></script>
- </head>
- <body>
- <div id="header">
- <div class="nav">
- <a class="btn linkBtn" href="http://www.videolan.org" target="_blank"><div class="icon"></div></a>
- <div class="btn uploadBtn">
- <input id="fileupload" type="file" name="files[]" data-url="upload.json" multiple>
- +
- </div>
- </div>
- </div>
- <div class="main">
- <div class="uploads">
- <ul></ul>
- </div>
- <div class="messageUpload">
- <h1>%%WEBINTF_DROPFILES%%</h1>
- <p>%%WEBINTF_DROPFILES_LONG%%</p>
- </div>
- <hr>
- <div class="messageDownload">
- <h1>%%WEBINTF_DOWNLOADFILES%%</h1>
- <p>%%WEBINTF_DOWNLOADFILES_LONG%%</p>
- </div>
- <ul class="main downloads cf">
- %%FILES%%
- </ul>
- <div id="footer">
- <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>
- </div>
- </div>
- <div id="overlay" class="">
- <div id="modal">
- <ul class="downloads cf">
- <!-- content of div.content goes here -->
- </ul>
- </div>
- </div>
- </body>
- </html>
|