-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
117 lines (103 loc) · 4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aaron Baker</title>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&family=Montserrat:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="header">
<h1 style="text-align: center;">AARON BAKER</h1>
<p class="contact">
<a href="mailto: aaron@aajbaker.com" style="color: white">aaron@aajbaker.com</a><br>
</p>
</div>
<div class="timeline-wrapper clearfix">
<div class="timeline-content-day">
<div class="timeline-line"></div>
<div class="timeline-content-item" data-timeline="hobbies">
<span>Hobbies</span>
<div class="timeline-content-item-reveal">
<a href="hobbies.html">
<img src="assets/imgs/hobbies.JPG">
<span>Ask Me About</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="travel">
<span>Travel</span>
<div class="timeline-content-item-reveal">
<a href="travel.html">
<img src="assets/imgs/travel.jpg">
<span>In the World</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="photo">
<span>Photo</span>
<div class="timeline-content-item-reveal">
<a href="photo.html">
<img src="assets/imgs/photo2.jpg">
<span>Behind the Lens</span>
</a>
</div>
</div>
<div class="timeline-content-item active" data-timeline="home">
<span>Home</span>
<div class="timeline-content-item-reveal">
<a href="index.html">
<img src="assets/imgs/portrait.jpg">
<span>Home</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="interests">
<span>Interests</span>
<div class="timeline-content-item-reveal">
<a href="interests.html">
<img src="assets/imgs/interests.JPG">
<span>On My Mind</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="positions">
<span>Positions</span>
<div class="timeline-content-item-reveal">
<a href="positions.html">
<img src="assets/imgs/berkeley.JPG">
<span>On the Job</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="research">
<span>Research<br>and CV</span>
<div class="timeline-content-item-reveal">
<a href="research.html">
<img src="assets/imgs/field.JPG">
<span>In the Lab</span>
</a>
</div>
</div>
</div>
</div>
<div style="padding: 20px;"></div>
<div class="fade-in body-wrapper" style="text-align: center;">
<div class="title" style="justify-self: center;">Thanks for visiting my site!</div>
<div class="text-box">
I'm a PhD student at Yale studying the development of social cognition.
I work with Yarrow Dunham's' <a href="http://www.socialcogdev.com/">Social Cognitive Development Lab</a> and Julian Jara-Ettinger's <a href="https://compdevlab.yale.edu/">Computational Social Cognition Lab</a>.
<br><br><strong><i>Go right on the timeline for professional info</i></strong>, and left for some other things about me!
</div>
<div class="fade-in flex" style="justify-content: center;">
<a href="https://docs.google.com/document/d/1gHrsO_EHssG8nkZoDp4X5Ijcc06t8kcm/export?format=pdf&attachment=false&ouid=110931800712811555262&rtpof=true&sd=true" target="_blank">
<div class="title"> CV </div>
</a>
</div>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>