Skip to content

Commit 8c3fe06

Browse files
committed
(#3) Index file, the public folder will include scripts for SEO Crawling.
1 parent 1b48791 commit 8c3fe06

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

src/public/index.html

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<!DOCTYPE html>
2+
<html lang="">
3+
<head>
4+
<title>Angular2 Webpack Starter by @gdi2990 from @AngularClass</title>
5+
6+
<meta charset="utf-8">
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<meta name="description" content="">
9+
<meta name="viewport" content="width=device-width, initial-scale=1">
10+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
11+
<meta name="description" content="Angular2 Webpack Starter by @gdi2990 from @AngularClass">
12+
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
13+
14+
<base href="/">
15+
<!-- ignore: Aplha 32 router fix -->
16+
<script>baseElement = document.querySelector('base');baseElement.attr = baseElement.getAttribute;</script>
17+
<!-- styles -->
18+
<style>
19+
body {
20+
margin: 0;
21+
}
22+
</style>
23+
<!--
24+
Angular 2
25+
traceur-runtime: is only needed for ES6 browser polyfill
26+
this is not the full traceur only the polyfills
27+
-->
28+
<script src="/lib/traceur-runtime.min.js"></script>
29+
</head>
30+
<body>
31+
32+
<app>
33+
Loading...
34+
</app>
35+
36+
<!-- Commmon files to be cached -->
37+
<script src="/__build__/common.js"></script>
38+
<!-- Angular2 files -->
39+
<script src="/__build__/angular2.js"></script>
40+
<!-- App script -->
41+
<script src="/__build__/app-simple.js"></script>
42+
<!-- TODO: replace /app-simple.js with /app.js -->
43+
</body>
44+
</html>

0 commit comments

Comments
 (0)