-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.1 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
---
layout: archive
author_profile: true
quote: "Sam Teplov's personal website where I showcase active and past research, as well as other projects and publications."
---
<div class="col-md-6">
<h3 class="no-margin">Publications</h3>
{% assign sorted = site.publications | sort: 'year' | reverse %}
{% for publication in sorted limit: 3 %}
{% if forloop.index > 2 %}<div class="hide-mobile ">{% endif %}
{% assign postThumb = publication.upload_directory | append: "/thumb.png" %}
{% include
bookmark-box.html
url=publication.url
title=publication.title
imageUrl=postThumb
imageLeft="true"
%}
{% if forloop.index > 2 %}</div>{% endif %}
{% endfor %}
</div>
<div class="col-md-6">
<h3 class="no-margin">Active Research & Projects</h3>
{% for post in site.projects limit: 3 %}
{% if forloop.index > 2 %}<div class="hide-mobile ">{% endif %}
{% assign postThumb = post.upload_directory | append: "/thumb.png" %}
{% include
bookmark-box.html
url=post.url
title=post.title
imageUrl=postThumb
imageLeft="true"
%}
{% if forloop.index > 2 %}</div>{% endif %}
{% endfor %}
</div>