comparison src/index.html @ 47:b65a031c4967 ng2-final

first step to angular2-final (2.4) version of the query browser.
author casties
date Fri, 17 Mar 2017 20:16:52 +0100
parents index.html@5353b2dffb0f
children 7b9d616695d3
comparison
equal deleted inserted replaced
46:1f3fed01aef6 47:b65a031c4967
1 <html>
2 <head>
3 <meta charset="utf-8" />
4 <title>ISMI Query Builder</title>
5
6 <!--link to bootstrap.css-->
7 <link rel="stylesheet" href="assets/css/prism-okaidia.css">
8 <link rel="stylesheet" href="assets/css/bootstrap-3.3.5.min.css">
9 <link rel="stylesheet" type="text/css" href="assets/css/jquery.dataTables-1.10.9.css">
10 <link rel="stylesheet" href="assets/css/style.css">
11
12 <!-- Polyfill(s) for older browsers -->
13 <script src="node_modules/core-js/client/shim.min.js"></script>
14
15 <script src="node_modules/zone.js/dist/zone.js"></script>
16 <script src="node_modules/systemjs/dist/system.src.js"></script>
17
18 <script src="systemjs.config.js"></script>
19 <script>
20 System.import('main.js').catch(function(err){ console.error(err); });
21 </script>
22 </head>
23
24 <!-- 3. Display the application -->
25 <body>
26 <query-app>Loading... Query Builder</query-app>
27 </body>
28
29 </html>