-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·81 lines (74 loc) · 3.7 KB
/
index.html
File metadata and controls
executable file
·81 lines (74 loc) · 3.7 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en-us" ng-app="portfolioApp">
<head>
<title>Phil Tularak | User Experience Designer</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css">
<!-- Adds jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<!-- Custom Stylesheet -->
<link rel="stylesheet" type="text/css" href="./assets/css/style.css">
<!-- Adds Angular.js from the Google CDN -->
<script src="https://code.angularjs.org/1.5.5/angular.min.js"></script>
<!--<script src="https://code.angularjs.org/1.5.5/angular-route.min.js"></script>-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.18/angular-ui-router.js"></script>
<script src="https://code.angularjs.org/1.5.5/angular-resource.min.js"></script>
<script src="https://code.angularjs.org/1.5.5/angular-cookies.min.js"></script>
<!--<script src="https://cdnjs.com/libraries/angular-ui-router"></script>-->
<script src="./app/app.js"></script>
<script src="./app/logger.js"></script>
<script src="./assets/js/run.js"></script>
<script src="./app/components/home/homeService.js"></script>
<script src="./app/components/portfolio/portfolioDataService.js"></script>
</head>
<body>
<header>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a ui-sref="home" class="navbar-brand">Phil Tularak | UX Designer</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a ui-sref="home"><i class="fa fa-home"></i> Home</a></li>
<li><a ui-sref="design-process"><i class="fa fa-home"></i> Design Process</a></li>
<li><a ui-sref="portfolio"><i class="fa fa-home"></i> Portfolio</a></li>
<li><a ui-sref="resume"><i class="fa fa-home"></i> Resume</a></li>
<li><a ui-sref="login"><i class="fa fa-home"></i> Login</a></li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Begin Angular View -->
<div ui-view></div>
<footer class="footer">
<div class="container">
<div class="col-md-4">
<h2>About</h2>
<p>
I’m a passionate user experience professional who lives and breathes all things UX. I believe in being an advocate and the last line of defense for users - listening to, talking to, and observing them in order to understand their needs so I can help deliver the best experience possible for them in the products I design.
</p>
</div>
<div class="col-md-4"></div>
<div class="col-md-4">
<p class="copyright">
© 2016 philliptularak.com All Rights Reserved
</p>
</div>
</div>
</footer>
</body>
</html>