Use gulp examples/pub.serve to start up the server and go to http://localhost:8080/index_static.html to see the static app.
21 lines
487 B
HTML
21 lines
487 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Hello Angular 2.0 (Dart Static)</title>
|
|
<script type="application/dart" src="main_static.dart"></script>
|
|
<script src="packages/browser/dart.js"></script>
|
|
</head>
|
|
<body>
|
|
<hello-app>
|
|
Loading...
|
|
</hello-app>
|
|
</body>
|
|
</html>
|
|
|
|
<!-- to run do:
|
|
1) gulp build
|
|
2) gulp examples/pub.serve
|
|
3) open localhost:8080/index_static.html in dartium or chrome.
|
|
TODO(rado): merge with JS's index.html in ../src/hello_world/
|
|
-->
|