forked from yearofmoo-articles/AngularJS-SEO-Article
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 1.78 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html data-ng-app="App">
<head>
<title>AngularJS SEO Demo</title>
<!-- include this if you are not using hashbangs -->
<!-- <meta name="fragment" content="!" /> -->
</head>
<link rel="stylesheet" type="text/css" href="./fonts/fa/css/font-awesome.css" />
<style type="text/css">
.status {
color:white;
position:absolute;
top:0;
left:0;
right:0;
-webkit-transition:all 0.5s linear;
padding:15px 50px 15px 70px;
color:black;
background:white url(graphics/loading.gif) no-repeat 15px center;
border-bottom:2px solid #ddd;
box-shadow:0 0 5px #999;
}
.status.ready {
opacity:0;
}
body {
background:#ddd;
padding-top:50px;
}
#footer {
position:fixed;
bottom:0;
left:0;
right:0;
background:black;
padding:1em;
box-shadow:0 -5px 20px #555;
}
#footer a {
color:silver;
text-decoration:none;
}
#footer .cloud-link {
float:right;
}
</style>
<body data-status="{{ status }}" class="ng-cloak">
<nav id="main-navigation">
<a href="#!/home">Home</a>
<a href="#!/videos">Videos</a>
<a href="#!/videos/slow">Slow Loading Videos</a>
</nav>
<div class="status" data-ng-class="status">loading...</div>
<div data-ng-view></div>
<footer id="footer">
<a href="https://github.com/yearofmoo-articles/AngularJS-SEO-Article" target="_blank" class="github-link"><span class="icon-github"></span> View Github Repo</a>
<a href="http://www.yearofmoo.com/" target="_blank" class="cloud-link"><span class="icon-cloud"></span> Goto Yearofmoo</a>
</footer>
<script src="./js/angular.min.js"></script>
<script src="./js/application.js"></script>
<body>
</html>