Skip to content

Commit 8711855

Browse files
authored
Update publications.html
1 parent 0c70528 commit 8711855

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

publications.html

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,31 @@
77
<a href="{{ site.base }}/bib/pubs.bib">Download BibTeX.</a>
88
</p>-->
99

10+
<h2> Jornal Papers</h2>
1011
{% assign prev_year = 1000 %}
1112
{% assign pubs = site.data.pubs | sort: "date" | reverse %}
1213
<table class="table">
1314
<tbody>
1415
{% for pub in pubs %}
15-
{% include pub_entry.html pub=pub prev_year=prev_year%}
16-
{% assign prev_year = pub.date | date: "%Y" | to_integer %}
16+
{% if pub.pub-type == "journal"%}
17+
{% include pub_entry.html pub=pub prev_year=prev_year%}
18+
{% assign prev_year = pub.date | date: "%Y" | to_integer %}
19+
{% endif %}
1720
{% endfor %}
1821
</tbody>
1922
</table>
23+
24+
25+
<!-- {% if pub.pub-type == "conference"%}
26+
<h2> Conference Papers</h2>
27+
{% assign prev_year = 1000 %}
28+
{% assign pubs = site.data.pubs | sort: "date" | reverse %}
29+
<table class="table">
30+
<tbody>
31+
{% for pub in pubs %}
32+
{% include pub_entry.html pub=pub prev_year=prev_year%}
33+
{% assign prev_year = pub.date | date: "%Y" | to_integer %}
34+
{% endfor %}
35+
</tbody>
36+
</table>
37+
{% endif %} -->

0 commit comments

Comments
 (0)