forked from academicpages/academicpages.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (53 loc) · 2.83 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
---
layout: single
author_profile: true
---
{% include base_path %}
<h2 id="about">About</h2>
<div><p>
Third-year PhD candidate at Caltech studying Computing and Mathematical Sciences, advised by Katie Bouman in the <a href="https://computationalcameras.org/">Computational Cameras Group</a>, supported by the Gupta Fellowship. Previously at Duke, studying Mathematics, Computer Science and Statistics.
My research interests include computational imaging and computer vision. Currently I'm working on using computational imaging techniques for astrophysical applications.
</p></div>
<h2>News</h2>
<!-- <div id="news">
{% for item in site.data.news.main %}
<p>{{ item | markdownify | remove: '<p>' | remove: '</p>'}}</p>
{% endfor %}
<a href="#" onclick="hideBlock('news'); showBlock('allnews'); return false;" class="btn btn--inverse">More</a>
</div>
<div id="allnews" style="display: none;">
{% for item in site.data.news.all %}
<p>{{ item | markdownify | remove: '<p>' | remove: '</p>'}}</p>
{% endfor %}
<a href="#" onclick="hideBlock('allnews'); showBlock('news'); return false;" class="btn btn--inverse">Less</a>
</div> -->
<div id="news">
{% for item in site.data.news.main %}
<p><strong><font class="new">{{ item.date | markdownify | remove: '<p>' | remove: '</p>'}} </font></strong>{{ item.info | markdownify | remove: '<p>' | remove: '</p>'}}</p>
{% endfor %}
<a href="#" onclick="hideBlock('news'); showBlock('allnews'); return false;" class="btn btn--inverse">More</a>
</div>
<div id="allnews" style="display: none;">
{% for item in site.data.news.all %}
<p><strong><font class="new">{{ item.date | markdownify | remove: '<p>' | remove: '</p>'}} </font></strong>{{ item.info | markdownify | remove: '<p>' | remove: '</p>'}}</p>
{% endfor %}
<a href="#" onclick="hideBlock('allnews'); showBlock('news'); return false;" class="btn btn--inverse">Less</a>
</div>
<h2>Talks</h2>
<div id="talks">
{% for item in site.data.talks.main %}
<p><strong><font class="new">{{ item.date | markdownify | remove: '<p>' | remove: '</p>'}} </font></strong>{{ item.info | markdownify | remove: '<p>' | remove: '</p>'}}</p>
{% endfor %}
<a href="#" onclick="hideBlock('talks'); showBlock('alltalks'); return false;" class="btn btn--inverse">More</a>
</div>
<div id="alltalks" style="display: none;">
{% for item in site.data.talks.all %}
<p><strong><font class="new">{{ item.date | markdownify | remove: '<p>' | remove: '</p>'}} </font></strong>{{ item.info | markdownify | remove: '<p>' | remove: '</p>'}}</p>
{% endfor %}
<a href="#" onclick="hideBlock('alltalks'); showBlock('talks'); return false;" class="btn btn--inverse">Less</a>
</div>
<h2 style="clear: both;" id="publications">Publications</h2>
{% for publication in site.data.publications.all %}
{% include publication-single.html %}
{% endfor %}
<div style="clear: both;"></div>