-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·76 lines (69 loc) · 3.57 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<head>
<title>Portfolio - Damien Duignan</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,600,700" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.min.css">
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Montserrat">
<link href='https://fonts.googleapis.com/css?family=Just+Another+Hand|PT+Serif:700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Just+Another+Hand|PT+Serif' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="shortcut icon" href="img/icon.png">
<!-- Include the AngularJS routing library -->
<script src="https://code.angularjs.org/1.2.28/angular-route.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-66146852-2', 'auto');
ga('send', 'pageview');
</script>
</head>
<body ng-app="PortfolioApp" ng-controller="MainController">
<div id="holder">
<div id="header">
<ng-include src="'views/nav.html'"></ng-include>
</div>
<div id="body">
<!-- Main Body -->
<div id="main-body">
<ng-include src="'views/home.html'" ng-controller="HomeController"></ng-include>
<ng-include src="'views/about.html'" ng-controller="AboutController"></ng-include>
<div id="experience">
<ng-include src="'views/experience.html'" ng-controller="XPController"></ng-include>
<ng-include src="'views/education.html'" ng-controller="EducationController"></ng-include>
</div>
<ng-include src="'views/skills.html'" ng-controller="SkillsController"></ng-include>
<ng-include src="'views/projects.html'" ng-controller="ProjectsController"></ng-include>
<ng-include src="'views/contact.html'"></ng-include>
</div>
</div>
</div>
<!-- Modules -->
<script src="js/app.js"></script>
<!-- Controllers -->
<script src="js/controllers/MainController.js"></script>
<script src="js/controllers/AboutController.js"></script>
<script src="js/controllers/ProjectsController.js"></script>
<script src="js/controllers/SkillsController.js"></script>
<script src="js/controllers/XPController.js"></script>
<script src="js/controllers/HomeController.js"></script>
<script src="js/controllers/EducationController.js"></script>
<!-- Directives -->
<script src="js/directives/projectListing.js"></script>
<script src="js/directives/navLink.js"></script>
<script src="js/directives/workListing.js"></script>
<script src="js/directives/skillButton.js"></script>
<script src="js/directives/educationListing.js"></script>
<!-- Filters -->
<script src="js/filters/filters.js"></script>
<!--Services-->
<script src="js/services/skillsService.js"></script>
<script src="external/jQuery.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="external/bootstrap.js"></script>
</body>
</html>