summaryrefslogtreecommitdiff
path: root/src/main/resources/static
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/static')
-rw-r--r--src/main/resources/static/index.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main/resources/static/index.html b/src/main/resources/static/index.html
new file mode 100644
index 00000000..e238079b
--- /dev/null
+++ b/src/main/resources/static/index.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Seven Wonders</title>
+ <link href="/webjars/bootstrap/css/bootstrap.min.css" rel="stylesheet">
+ <link href="/main.css" rel="stylesheet">
+ <script src="/webjars/jquery/jquery.min.js"></script>
+ <script src="/webjars/sockjs-client/sockjs.min.js"></script>
+ <script src="/webjars/stomp-websocket/stomp.min.js"></script>
+</head>
+<body>
+<noscript>
+ <h2 style="color: #ff0000">Seems your browser doesn't support Javascript! Websocket relies on Javascript being
+ enabled. Please enable Javascript and reload this page!</h2>
+</noscript>
+<h1>Seven Wonders</h1>
+<p>This is a stub index page for the project, for the sake of vertical completeness. We will soon get to work on it!</p>
+</body>
+</html> \ No newline at end of file
bgstack15