Skip to content

Latest commit

 

History

History
59 lines (56 loc) · 2.22 KB

publications.md

File metadata and controls

59 lines (56 loc) · 2.22 KB
layout title permalink
default
Publications
/publications/

Featured Publications

{% for pub in site.data.publications.featured limit:4 %}
{% if pub.image %} {{ pub.title }} {% endif %}

{{ pub.title }}

{{ pub.authors }}

{{ pub.venue }}, {{ pub.year }}

{% if pub.pdf %} PDF {% endif %}
{% endfor %}

Select Publications

{% assign years = site.data.publications.all | map: "year" | uniq | sort | reverse %}
{% for year in years %}
<div class="year-section">
    <h3>{{ year }}</h3>
    {% assign year_pubs = site.data.publications.all | where: "year", year %}
    {% for pub in year_pubs %}
    <div class="publication-item">
        <div class="pub-content">
            <h4>{{ pub.title }}</h4>
            <p class="authors">{{ pub.authors }}</p>
            <p class="venue"><strong>{{ pub.venue }}</strong></p>
            <div class="pub-links">
                {% if pub.pdf %}
                <a href="{{ pub.pdf }}" class="pub-link" target="_blank">PDF</a>
                {% endif %}
                {% if pub.code %}
                <a href="{{ pub.code }}" class="pub-link code" target="_blank">Code</a>
                {% endif %}
                {% if pub.doi %}
                <a href="{{ pub.doi }}" class="pub-link doi" target="_blank">DOI</a>
                {% endif %}
            </div>
        </div>
    </div>
    {% endfor %}
</div>
{% endfor %}