summaryrefslogtreecommitdiff
path: root/sw-ui/src/main/resources/index.html
blob: da3fea6b57369b2b12f15e87f3ca4674c4d77e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="shortcut icon" href="${publicPath}favicon.ico">
    <title>Seven Wonders</title>
    <!-- Style dependencies -->
    <link href="https://unpkg.com/normalize.css@^7.0.0" rel="stylesheet" />
    <!-- Blueprint stylesheets -->
    <link href="https://unpkg.com/@blueprintjs/icons@^3.4.0/lib/css/blueprint-icons.css" rel="stylesheet" />
    <link href="https://unpkg.com/@blueprintjs/core@^3.10.0/lib/css/blueprint.css" rel="stylesheet" />
  </head>
  <body>
    <div id="root"></div>
    <script src="${bundle}"></script>
  </body>
</html>
bgstack15