Skip to content

Commit

Permalink
fixed collab issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tayalmanan28 authored Jul 18, 2024
1 parent c244b64 commit fefd0f4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ permalink: /research/stoch/blog/:year/:month/:day/:title.html
roles:
- key: faculty
name: Faculty
- key: collaborator
name: Collaborators
- key: staff
name: Staff
# - key: postdoc
Expand Down
2 changes: 1 addition & 1 deletion _data/people.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ ajay:
# Profs

shishir:
display_name: "Shishir Kolathaya (HEAD)"
display_name: "Shishir Kolathaya"
webpage: "https://shishirny.github.io/"
github: shishirny
role: faculty
Expand Down
15 changes: 15 additions & 0 deletions publications.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,21 @@ <h2> Conference Papers</h2>
</tbody>
</table>

<h2> Workshop/Symposium Papers</h2>
<p> &ast; - The authors have contributed equally </p>
{% assign prev_year = 1000 %}
{% assign pubs = site.data.pubs | sort: "date" | reverse %}
<table class="table">
<tbody>
{% for pub in pubs %}
{% if pub.pub-type == "workshop"%}
{% include pub_entry.html pub=pub prev_year=prev_year%}
{% assign prev_year = pub.date | date: "%Y" | to_integer %}
{% endif %}
{% endfor %}
</tbody>
</table>

<!-- {% if pub.pub-type == "conference"%}
<h2> Conference Papers</h2>
{% assign prev_year = 1000 %}
Expand Down

0 comments on commit fefd0f4

Please sign in to comment.