diff options
author | Johannes Zellner <johannes@nebulon.de> | 2016-03-01 13:27:05 +0100 |
---|---|---|
committer | Johannes Zellner <johannes@nebulon.de> | 2016-03-01 13:27:05 +0100 |
commit | 0fd8904c881ce9de7fc4737989f0c1e820987f59 (patch) | |
tree | df908e4962be43df69fb376983f4ea0c8363ed14 /app/index.html | |
parent | 130809800e6e3fa33e5fc207dd6e1d963231f2a9 (diff) | |
download | Surfer-0fd8904c881ce9de7fc4737989f0c1e820987f59.tar.gz Surfer-0fd8904c881ce9de7fc4737989f0c1e820987f59.tar.zst Surfer-0fd8904c881ce9de7fc4737989f0c1e820987f59.zip |
Add some basic bootstrap stuff
Diffstat (limited to 'app/index.html')
-rw-r--r-- | app/index.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/index.html b/app/index.html new file mode 100644 index 0000000..8fb473d --- /dev/null +++ b/app/index.html | |||
@@ -0,0 +1,25 @@ | |||
1 | <html> | ||
2 | <head> | ||
3 | <title> Cloudron Surfer </title> | ||
4 | |||
5 | <link rel="stylesheet" href="/admin/css/bootstrap.min.css"> | ||
6 | <link rel="stylesheet" href="/admin/css/style.css"> | ||
7 | |||
8 | <script src="/admin/js/jquery-1.12.1.min.js"></script> | ||
9 | <script src="/admin/js/bootstrap.min.js"></script> | ||
10 | |||
11 | </head> | ||
12 | <body> | ||
13 | |||
14 | <div class="wrapper"> | ||
15 | <div class="content"> | ||
16 | <h1> Surfer Admin </h1> | ||
17 | <p> | ||
18 | Upload some files using the commandline tool. | ||
19 | <button class="btn btn-primary">Foobar</button> | ||
20 | </p> | ||
21 | </div> | ||
22 | </div> | ||
23 | |||
24 | </body> | ||
25 | </html> | ||