-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
130 lines (117 loc) · 6.72 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="I'm Erik Yang, a software engineer at Yelp.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Favicon-->
<!--Credit:https://realfavicongenerator.net/-->
<link rel="apple-touch-icon" sizes="57x57" href="/favicons/apple-touch-icon-57x57.png?v=0">
<link rel="apple-touch-icon" sizes="60x60" href="/favicons/apple-touch-icon-60x60.png?v=0">
<link rel="apple-touch-icon" sizes="72x72" href="/favicons/apple-touch-icon-72x72.png?v=0">
<link rel="apple-touch-icon" sizes="76x76" href="/favicons/apple-touch-icon-76x76.png?v=0">
<link rel="apple-touch-icon" sizes="114x114" href="/favicons/apple-touch-icon-114x114.png?v=0">
<link rel="apple-touch-icon" sizes="120x120" href="/favicons/apple-touch-icon-120x120.png?v=0">
<link rel="apple-touch-icon" sizes="144x144" href="/favicons/apple-touch-icon-144x144.png?v=0">
<link rel="apple-touch-icon" sizes="152x152" href="/favicons/apple-touch-icon-152x152.png?v=0">
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon-180x180.png?v=0">
<link rel="icon" type="image/png" href="/favicons/favicon-32x32.png?v=0" sizes="32x32">
<link rel="icon" type="image/png" href="/favicons/android-chrome-192x192.png?v=0" sizes="192x192">
<link rel="icon" type="image/png" href="/favicons/favicon-96x96.png?v=0" sizes="96x96">
<link rel="icon" type="image/png" href="/favicons/favicon-16x16.png?v=0" sizes="16x16">
<link rel="manifest" href="/favicons/manifest.json?v=0">
<link rel="mask-icon" href="/favicons/safari-pinned-tab.svg?v=0" color="#dc143c">
<link rel="shortcut icon" href="/favicons/favicon.ico?v=0">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="/favicons/mstile-144x144.png?v=0">
<meta name="msapplication-config" content="/favicons/browserconfig.xml?v=0">
<meta name="theme-color" content="#ffffff">
<!--Icons-->
<script src="https://use.fontawesome.com/cbf9554986.js"></script>
<!--Fonts-->
<!--Stylesheets-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="css/theme.css">
<title>
Erik Yang
</title>
</head>
<body>
<nav>
<a href=""><img id="brand" src="img/brand.jpg"></img></a>
<div id="mobile-menu-icon"><li><span>Navigation</span><i id="menu-chevron" class="fa fa-chevron-down"></i></li></div>
<ul>
<li class="mobile-only" id="mobile-menu-heading">Site Outline</li>
<a class="mobile-only" href=""><li>Home</li></a>
<a href="#about"><li>About</li></a>
<a href="#projects"><li>Projects</li></a>
</ul>
</nav>
<div id="landing">
<div id="particles-js"></div>
<img id="landing-decoration" src="img/landing-decoration-2.png"></img>
<div id="landing-container">
<div id="landing-title">Erik Yang</div>
<div id="landing-subtitle">Software Engineer at Yelp</div>
</div>
</div>
<div id="about" class="container padding-top-sm">
<h1>About</h1>
Graduated with: Computer Science B.A. at UC Berkeley, December 2018</br>
Currently: Software Engineer at <a href='https://www.yelp.com/' target="_blank" title="Go to Yelp Homepage">Yelp</a>
</div>
<!--<div id="projects" class="container padding-top-sm">
<h1>Projects</h1>
<h2 id="github-projects-header">Updated just now from <a href="https://www.github.com/erikyangs" target="_blank" title="Go to @erikyangs Github">@erikyangs Github:</a></h2>
<h2 id="other-projects-header">Other projects:</h1>
</div>-->
<div ng-cloak id="projects" class="container padding-top-sm ng-cloak" ng-app="projects-app" ng-controller="projects-controller">
<h1>Projects</h1>
<h2 id="github-projects-header">Updated just now from <a href="https://www.github.com/erikyangs" target="_blank" title="Go to @erikyangs Github">@erikyangs Github:</a></h2>
<div class="row">
<div ng-repeat="project in githubprojects">
<div ng-if="$index%3==0 && $index!=0" class="clearfix"></div>
<div ng-if="project.name && project.description" class="col-sm-4 project-container">
<div class="project">
<img ng-if="project.img_url" ng-src="{{project.img_url}}"></img>
<div class="project-content">
<h3>{{project.name}}</h3>
<span>{{project.description}}</span>
<div ng-if="project.html_url || project.homepage" class="center-container text-center">
<a ng-if="project.html_url" ng-href="{{project.html_url}}" target="_blank"><div class=button>Source Code</div></a>
<a ng-if="project.homepage" ng-href="{{project.homepage}}" target="_blank"><div class=button>View Project</div></a>
</div>
</div>
</div>
</div>
</div>
</div>
<h2 id="other-projects-header">Other projects:</h1>
<div class="row">
<div ng-repeat="project in otherprojects">
<div ng-if="$index%3==0 && $index!=0" class="clearfix"></div>
<div ng-if="project.name && project.description" class="col-sm-4 project-container">
<div class="project">
<img ng-if="project.img_url" ng-src="{{project.img_url}}"></img>
<div class="project-content">
<h3>{{project.name}}</h3>
<span>{{project.description}}</span>
<div ng-if="project.html_url || project.homepage" class="center-container text-center">
<a ng-if="project.html_url" ng-href="{{project.html_url}}" target="_blank"><div class=button>Source Code</div></a>
<a ng-if="project.homepage" ng-href="{{project.homepage}}" target="_blank"><div class=button>View Project</div></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="height: 10vh"></div>
<!--Javascript-->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.min.js"></script>
<script src="js/particles.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>