-
Notifications
You must be signed in to change notification settings - Fork 1
/
events.html
29 lines (26 loc) · 1.22 KB
/
events.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
<html ng-app="myApp">
<head>
<title>
About Us| proKnap
</title>
<meta name="author" content="proKnap">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/logo-png.png" type="image/png">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Pacifico|Cuprum|Lobster+Two' rel='stylesheet' type='text/css'>
<link href="css/custom.css" rel="stylesheet">
<script src="js/libs/angular/angular.min.js"></script>
<script src="js/libs/angular/angular-route.min.js"></script>
<script src="js/libs/angular/angular-resource.min.js"></script>
<script src="js/libs/jquery/jquery-2.1.3.min.js"></script>
<script src="js/libs/bootstrap/bootstrap.min.js"></script>
<script src="js/scripts/ng/app.js"></script>
<script src="js/scripts/ng/eventCtrl.js"></script>
</head>
<body >
<section id="navbar" ng-include="'html/partials/navbar.html'"></section>
<section id="about" ng-include="'html/partials/events.html'"></section>
<section id="footer" ng-include="'html/partials/footer.html'"></section>
</body>
</html>