-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (44 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en" ng-app="PortfolioHosting">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hackelman</title>
<link rel="stylesheet" href="./src/styles/css/normalize.css">
<link rel="stylesheet" href="./src/styles/css/skeleton.css">
<link rel="stylesheet" href="./src/styles/main.css">
<link href="https://fonts.googleapis.com/css?family=Francois+One" rel="stylesheet">
</head>
<body>
<header class="container">
<div class="row">
<button class="two columns button" ui-sref="PortfolioParent.index"><p class="label">Home</p></button>
<button class="two columns button" ui-sref="PortfolioParent.about"><p class="label">About</p></button>
<button class="two columns button" ui-sref="PortfolioParent.projects"><p class="label">Projects</p></button>
<!-- <button class="two columns button" ui-sref="PortfolioParent.contact"><p class="label">Contact</p></button> -->
<div class="icons contact">
<div class="contact-row">
<a href="mailto:[email protected]" target="_blank" ><img src="./src/styles/images/email.svg" /></a>
</div>
<div class="contact-row">
<a href="https://github.com/dhackelman" target="_blank" ><img src="./src/styles/images/git.svg" /></a>
</div>
<div class="contact-row">
<a href="https://www.linkedin.com/in/dhackelman/" target="_blank" ><img src="./src/styles/images/linked.png" /></a>
</div>
<div class="contact-row">
<a href="./src/styles/images/Drew.Hackelman.FullstackDev.2017.pdf" target="_blank" ><img src="./src/styles/images/resume-icon.svg" /></a>
</div>
</div>
</div>
</header>
<main>
<ui-view></ui-view>
</main>
<footer class="footer">
Drew Hackelman © 2017
</footer>
<script src="./lib/js/vendor/vendor.min.js"></script>
<script src="./lib/js/app.js"></script>
</body>
</html>