summaryrefslogtreecommitdiff
path: root/share/web_surfaces/index.html
diff options
context:
space:
mode:
authorLuciano Iam <lucianito@gmail.com>2020-04-09 16:34:16 +0200
committerRobin Gareus <robin@gareus.org>2020-04-09 20:56:46 +0200
commit891c63fe892b59fcf5a5579191ea844fad9f9d07 (patch)
treee93223d81aa26654fca0357750882d6c84b9d8c7 /share/web_surfaces/index.html
parentd694ee97c7a77172943ab342c9d5edd9bb57d2d0 (diff)
Update HTML/CSS/JS frontend
Diffstat (limited to 'share/web_surfaces/index.html')
-rw-r--r--share/web_surfaces/index.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/share/web_surfaces/index.html b/share/web_surfaces/index.html
new file mode 100644
index 0000000000..e5bcfce013
--- /dev/null
+++ b/share/web_surfaces/index.html
@@ -0,0 +1,25 @@
+<!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">
+ <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>
+ <script src="js/main.js"></script>
+ </body>
+</html>