Skip to content

Commit 7cb59b7

Browse files
authored
Added conf and journal tables separately
1 parent 8711855 commit 7cb59b7

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

publications.html

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: default
33
title: Publications
4-
authors: [zac, jan, brian, Kunal Shah]
4+
authors: [manan]
55
---
66
<!--<p>
77
<a href="{{ site.base }}/bib/pubs.bib">Download BibTeX.</a>
@@ -20,7 +20,20 @@ <h2> Jornal Papers</h2>
2020
{% endfor %}
2121
</tbody>
2222
</table>
23-
23+
24+
<h2> Conference Papers</h2>
25+
{% assign prev_year = 1000 %}
26+
{% assign pubs = site.data.pubs | sort: "date" | reverse %}
27+
<table class="table">
28+
<tbody>
29+
{% for pub in pubs %}
30+
{% if pub.pub-type != "journal"%}
31+
{% include pub_entry.html pub=pub prev_year=prev_year%}
32+
{% assign prev_year = pub.date | date: "%Y" | to_integer %}
33+
{% endif %}
34+
{% endfor %}
35+
</tbody>
36+
</table>
2437

2538
<!-- {% if pub.pub-type == "conference"%}
2639
<h2> Conference Papers</h2>

0 commit comments

Comments
 (0)