annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
39ec75917ef7 first checkin
casties
parents:
diff changeset
1 <html>
39ec75917ef7 first checkin
casties
parents:
diff changeset
2 <head>
41
5353b2dffb0f added local configuration file app/app-config.ts.
casties
parents: 38
diff changeset
3 <meta charset="utf-8" />
13
98b435bb6c0c more query work.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 7
diff changeset
4 <title>ISMI Query Builder</title>
0
39ec75917ef7 first checkin
casties
parents:
diff changeset
5
25
0795207f3b90 ng2-table now with pager, sorting and styling.
casties
parents: 22
diff changeset
6 <!--link to bootstrap.css-->
0795207f3b90 ng2-table now with pager, sorting and styling.
casties
parents: 22
diff changeset
7 <link rel="stylesheet" href="assets/css/prism-okaidia.css">
38
313a5360c2d3 make css local.
casties
parents: 25
diff changeset
8 <link rel="stylesheet" href="assets/css/bootstrap-3.3.5.min.css">
313a5360c2d3 make css local.
casties
parents: 25
diff changeset
9 <link rel="stylesheet" type="text/css" href="assets/css/jquery.dataTables-1.10.9.css">
25
0795207f3b90 ng2-table now with pager, sorting and styling.
casties
parents: 22
diff changeset
10 <link rel="stylesheet" href="assets/css/style.css">
0795207f3b90 ng2-table now with pager, sorting and styling.
casties
parents: 22
diff changeset
11
47
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents: 41
diff changeset
12 <!-- Polyfill(s) for older browsers -->
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents: 41
diff changeset
13 <script src="node_modules/core-js/client/shim.min.js"></script>
0
39ec75917ef7 first checkin
casties
parents:
diff changeset
14
47
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents: 41
diff changeset
15 <script src="node_modules/zone.js/dist/zone.js"></script>
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents: 41
diff changeset
16 <script src="node_modules/systemjs/dist/system.src.js"></script>
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents: 41
diff changeset
17
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents: 41
diff changeset
18 <script src="systemjs.config.js"></script>
0
39ec75917ef7 first checkin
casties
parents:
diff changeset
19 <script>
47
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents: 41
diff changeset
20 System.import('main.js').catch(function(err){ console.error(err); });
0
39ec75917ef7 first checkin
casties
parents:
diff changeset
21 </script>
39ec75917ef7 first checkin
casties
parents:
diff changeset
22 </head>
39ec75917ef7 first checkin
casties
parents:
diff changeset
23
39ec75917ef7 first checkin
casties
parents:
diff changeset
24 <!-- 3. Display the application -->
39ec75917ef7 first checkin
casties
parents:
diff changeset
25 <body>
13
98b435bb6c0c more query work.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 7
diff changeset
26 <query-app>Loading... Query Builder</query-app>
0
39ec75917ef7 first checkin
casties
parents:
diff changeset
27 </body>
39ec75917ef7 first checkin
casties
parents:
diff changeset
28
39ec75917ef7 first checkin
casties
parents:
diff changeset
29 </html>