Skip to content

Commit fefd0f4

Browse files
authored
fixed collab issues
1 parent c244b64 commit fefd0f4

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ permalink: /research/stoch/blog/:year/:month/:day/:title.html
1818
roles:
1919
- key: faculty
2020
name: Faculty
21+
- key: collaborator
22+
name: Collaborators
2123
- key: staff
2224
name: Staff
2325
# - key: postdoc

_data/people.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ ajay:
363363
# Profs
364364

365365
shishir:
366-
display_name: "Shishir Kolathaya (HEAD)"
366+
display_name: "Shishir Kolathaya"
367367
webpage: "https://shishirny.github.io/"
368368
github: shishirny
369369
role: faculty

publications.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,21 @@ <h2> Conference Papers</h2>
3636
</tbody>
3737
</table>
3838

39+
<h2> Workshop/Symposium Papers</h2>
40+
<p> &ast; - The authors have contributed equally </p>
41+
{% assign prev_year = 1000 %}
42+
{% assign pubs = site.data.pubs | sort: "date" | reverse %}
43+
<table class="table">
44+
<tbody>
45+
{% for pub in pubs %}
46+
{% if pub.pub-type == "workshop"%}
47+
{% include pub_entry.html pub=pub prev_year=prev_year%}
48+
{% assign prev_year = pub.date | date: "%Y" | to_integer %}
49+
{% endif %}
50+
{% endfor %}
51+
</tbody>
52+
</table>
53+
3954
<!-- {% if pub.pub-type == "conference"%}
4055
<h2> Conference Papers</h2>
4156
{% assign prev_year = 1000 %}

0 commit comments

Comments
 (0)