File tree Expand file tree Collapse file tree 1 file changed +20
-2
lines changed
Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change 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 %} -->
You can’t perform that action at this time.
0 commit comments