summaryrefslogtreecommitdiff
path: root/share/web_surfaces/index.html
blob: df8726a109d939c10ab6ada1b6dc32a0e8bdd6e3 (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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Ardour Web Surfaces</title>
        <link rel="stylesheet" type="text/css" href="css/main.css">
    </head>
    <body>
        <div id="top-bar">
            <img id="logo" src="img/logo.png">
        </div>
        <div id="content">
            <h2 id="loading">Loading...</h2>
            <pre id="error" style="display:none"></pre>
            <div id="index" style="display:none">
                <h1>Available Web Surfaces</h1>
                <div class="surface-list">
                    <h2>Built-In</h2>
                    <ul id="builtin"></ul>
                </div>
                <div class="surface-list">
                    <h2>User</h2>
                    <ul id="user"></ul>
                </div>
            </div>
        </div>
        <script src="js/main.js"></script>
    </body>
</html>