This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
---
|
||||
layout: default
|
||||
title: Publications
|
||||
url: /publications
|
||||
---
|
||||
<h1 style="font-size:1.5rem;font-weight:600;margin-bottom:2rem">Publications</h1>
|
||||
<div class="pub-list">
|
||||
{% assign pubs_by_year = site.publications | group_by: "year" | sort: "name" | reverse %}
|
||||
{% for year_group in pubs_by_year %}
|
||||
<div style="margin-bottom:2rem">
|
||||
<div style="font-size:1rem;font-weight:600;color:var(--text-muted);margin-bottom:1rem">{{ year_group.name }}</div>
|
||||
{% for pub in year_group.items %}
|
||||
<div class="pub-card" style="margin-bottom:1rem">
|
||||
<div>
|
||||
<div class="pub-title">{{ pub.title }}</div>
|
||||
<div class="pub-authors">{{ pub.authors }}</div>
|
||||
<div class="pub-venue">{{ pub.venue }}</div>
|
||||
<div class="pub-links">
|
||||
{% if pub.paper_url %}<a href="{{ pub.paper_url }}" target="_blank">Paper</a>{% endif %}
|
||||
{% if pub.code_url %}<a href="{{ pub.code_url }}" target="_blank">Code</a>{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
Reference in New Issue
Block a user