2018-07-02 14:50:13 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
<meta name="theme-color" content="#000000">
|
|
|
|
|
<!--
|
|
|
|
|
manifest.json provides metadata used when your web app is added to the
|
|
|
|
|
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
|
|
|
|
|
-->
|
2018-09-10 14:52:32 +02:00
|
|
|
<link rel="manifest" href="{{ contextPath }}/manifest.json">
|
|
|
|
|
<link rel="shortcut icon" href="{{ contextPath }}/favicon.ico">
|
2018-08-30 08:49:28 +02:00
|
|
|
|
2018-09-10 14:52:32 +02:00
|
|
|
<base href="{{ contextPath }}">
|
2018-07-11 14:59:01 +02:00
|
|
|
<title>SCM-Manager</title>
|
2018-07-02 14:50:13 +02:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<noscript>
|
|
|
|
|
You need to enable JavaScript to run this app.
|
|
|
|
|
</noscript>
|
|
|
|
|
<div id="root"></div>
|
2019-02-01 08:47:38 +01:00
|
|
|
<div id="modalRoot"></div>
|
|
|
|
|
|
2018-07-02 14:50:13 +02:00
|
|
|
<!--
|
|
|
|
|
This HTML file is a template.
|
|
|
|
|
If you open it directly in the browser, you will see an empty page.
|
|
|
|
|
|
|
|
|
|
You can add webfonts, meta tags, or analytics to this file.
|
|
|
|
|
The build step will place the bundled scripts into the <body> tag.
|
|
|
|
|
|
|
|
|
|
To begin the development, run `npm start` or `yarn start`.
|
|
|
|
|
To create a production bundle, use `npm run build` or `yarn build`.
|
|
|
|
|
-->
|
2018-08-27 15:47:02 +02:00
|
|
|
<script>
|
2018-09-10 14:52:32 +02:00
|
|
|
window.ctxPath = "{{ contextPath }}";
|
2018-08-27 15:47:02 +02:00
|
|
|
</script>
|
2019-10-07 17:06:00 +02:00
|
|
|
<script src="{{ contextPath }}/bundles/webapp.bundle.js"></script>
|
2018-10-25 16:39:19 +02:00
|
|
|
|
|
|
|
|
{{#liveReloadURL}}
|
|
|
|
|
<script src="{{liveReloadURL}}"></script>
|
|
|
|
|
{{/liveReloadURL}}
|
2018-07-02 14:50:13 +02:00
|
|
|
</body>
|
|
|
|
|
</html>
|