-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
53 lines (38 loc) · 2.46 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
<!doctype html>
<html ng-app="minhasKamalPersonalWebsite">
<head>
<!-------------------------------- META -------------------------------->
<meta charset="utf-8"/>
<meta name="keywords" content="minhas, kamal, minhaskamal, kamalminhas"/>
<meta name="description" content="Minhas Kamal's Personal Website"/>
<meta name="author" content="Minhas Kamal"/>
<title>Minhas Kamal</title>
<!-------------------------------- LINK -------------------------------->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous" />
<link href="app/site.css" rel="stylesheet" />
<link href="res/images/images.css" rel="stylesheet" />
<link href="res/images/minhaskamal.png" rel="icon" type="image/ico"/>
</head>
<body>
<sidebar></sidebar>
<div ng-view class="content col-md-9"></div>
<site-footer></site-footer>
<!-------------------------------- SCRIPT -------------------------------->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular-route.min.js"></script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="app/app.js"></script>
<script src="app/intro/intro.js"></script>
<script src="app/education/education.js"></script>
<script src="app/projects-and-publications/projects-and-publications.js"></script>
<script src="app/experience/experience.js"></script>
<script src="app/other-activities/other-activities.js"></script>
<script src="app/photo-gallery/photo-gallery.js"></script>
<script src="app/contact/contact.js"></script>
<script src="app/error/error.js"></script>
<script src="app/common/sidebar.js"></script>
<script src="app/common/site_footer.js"></script>
</body>
</html>