-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.27 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
---
layout: default
---
<div>
<div class="col-md-4 col-sm-6">
<div class="row">
<img src="assets/img/propic.png" class="col-xs-8 col-xs-offset-2 img-fit">
</div>
<h2>Derick Yang</h2>
<hr>
Hi! I'm Derick. Senior software engineer at Strava Metro. Formerly a senior data engineer at Wealthfront. I graduated from Tufts in 2018 in CS and Mathematics. Living in San Francisco. I'm into running, cycling, sustainable transportation, tennis, coding, and economics. All opinions are my own.
<br><br><a href="/resume/DerickYangCurrentResume.pdf">Resume</a><br><br>
{% include social.html %}
<hr>
</div>
<div class="col-md-8 col-sm-6 col-xs-12">
<!-- <div class="img-container"> -->
<img src="assets/img/san_francisco.png" class="img-fit">
<!-- </div> -->
<ul class="list-unstyled">
{% for product in site.products %}
{% if product.secret != true %}
<li>
<div class="col-xs-12 col-md-6" style="background-color: #{{ product.desc }}">
<h3>
<a id="{{ product.title }}" href="{{ product.url | prepend: site.baseurl }}" style="color: white;">
{{ product.title }}
</a>
</h3>
<hr>
</div>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>