forked from AnonymousFunction/anonymousfunction.github.com
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
52 lines (47 loc) · 1.91 KB
/
Copy pathindex.html
File metadata and controls
52 lines (47 loc) · 1.91 KB
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
<!DOCTYPE html>
<htmllang="en" ng-app="af">
<head>
<metacharset="utf-8">
<metahttp-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Anonymous Function</title>
<metaname="description" content="">
<metaname="viewport" content="width=device-width">
<linkrel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<linkrel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<linkhref='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<linkrel="stylesheet" href="/css/style.css" />
<scriptsrc="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.3/angular.min.js"></script>
<scriptsrc="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.3/angular-route.min.js"></script>
<scriptsrc="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<scriptsrc="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<scriptsrc="controllers/main.js"></script>
<scripttype="text/javascript">
var_gaq=_gaq||[];
_gaq.push(['_setAccount','UA-33217753-1']);
_gaq.push(['_trackPageview']);
(function(){
varga=document.createElement('script');ga.type='text/javascript';ga.async=true;
ga.src=('https:'==document.location.protocol ? 'https://ssl' : 'http://www')+'.google-analytics.com/ga.js';
vars=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(ga,s);
})();
</script>
</head>
<body>
<header>
<divid="title">Anonymous Function</div>
<nav>
<ul>
<li><ahref="#/home">HOME</a></li>
<li><ahref="#/games">GAMES</a></li>
<li><ahref="#/presentations">PRESENTATIONS</a></li>
<li><ahref="#/writing">WRITING</a></li>
</ul>
</nav>
</header>
<divid="wrapper" ng-controller="MainController">
<divid="content">
<divng-view/>
</div>
</div>
</body>
</html>