Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 711 Bytes

publications.md

File metadata and controls

35 lines (27 loc) · 711 Bytes
layout title permalink
page
Publications
/publications/

{% for publication in site.publications %} {% if publication.type == 'preprint' %} {% include publication-row.html %} {% endif %} {% endfor %}

{% assign sorted = site.publications | sort: 'year' | reverse %} {% for publication in sorted %} {% if publication.type != 'preprint' %}

{% if publication.year != prev_year %}
  <tr><td colspan="2">
    <h2>{{ publication.year }}</h2>
  </td></tr>
{% endif %}

{% assign prev_year = publication.year %}
{% include publication-row.html %}

{% endif %} {% endfor %}

Preprints