-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (50 loc) · 3.42 KB
/
index.html
File metadata and controls
51 lines (50 loc) · 3.42 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
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<link rel="icon" href="https://dl.dropboxusercontent.com/u/52673082/favicon.png">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.8/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.8/angular-route.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.8/angular-animate.min.js"></script>
<script src="js/app.js"></script>
<script src="js/MainController.js"></script>
<title>TreyLiteFM</title>
</head>
<body>
<div class="container" ng-controller="MainController">
<div class="box1 row"
ng-mouseenter="hover=true"
ng-mouseleave="hover = home ? false : true">
<div class="header">
<a href="#/" ng-click="goHome()"><div class="logo"></div></a>
<a class="link" href="https://github.com/treylitefm">Github</a>
<a class="link" href="https://linkedin.com/in/omarkgriffin">LinkedIn</a>
<a class="link" href="https://instagram.com/treylitefm">Instagram</a>
<div class="link dropdown">
<a href="" class="projects dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false" aria-haspopup="true">Projects <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a class="" href="#/pacman" ng-click="goPacman()">Pacman</a></li>
</ul>
</div>
<a class="link" href="mailto:griffin.omar@gmail.com">Contact Me</a>
</div>
<div class="bottom"
ng-class="{hover: hover}">
<div class="image image0 home-stuff ng-hide" ng-show="home"></div>
<div class="image image1 home-stuff ng-hide" ng-show="home"></div>
<div class="image image2 home-stuff ng-hide" ng-show="home"></div>
</div>
<div class="top" ng-class="{hover: hover}">
<div class="home-stuff image ng-hide" ng-show="home"></div>
<p class="description home-stuff ng-hide" ng-show="home">I Am A Quality Driven Full Stack Software Engineer.<br>So In A Nutshell, I Build Things and I Break Things. <br><br>I Also Happen To Climb Things.<br>My Spirit Animal is <a href="https://en.wikipedia.org/wiki/Kendrick_Lamar" class="kendrick">Kendrick Lamar.</a><br><br>Sincerely,<br>Omar Griffin</p>
</div>
</div>
</div>
<div class="view" ng-view=""></div>
</body>
</html>