Welcome to mirror list, hosted at ThFree Co, Russian Federation.

browser.html « web « res « mpc-hc « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7292503c9f8640121fedc819e0b5e043ca95e658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title>MPC-HC WebServer - File Browser</title>
        <link rel="stylesheet" href="default.css">
        <link rel="icon" href="favicon.ico">
    </head>
    <body class="page-file-browser">
        <!--[if lt IE 8]>
            <div class="browser-warning"><strong>Warning!</strong> You are using an <strong>outdated</strong> browser.
            Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</div>
        <![endif]-->
        <div>
            <table class="browser-table">
                <tr>
                    <td class="text-center">
                        <strong>Location: </strong>[currentdir]
                    </td>
                </tr>
            </table>
        </div>
        <span>&nbsp;</span>
        <div>
            <table class="browser-table">
                <tr>
                    <th>Name</th>
                    <th>Type</th>
                    <th>Size</th>
                    <th>Date Modified</th>
                </tr>
                [currentfiles]
            </table>
        </div>
[debug]
    </body>
</html>