| title | Atlas Analytics Lab - Publications |
|---|---|
| layout | gridlay |
| excerpt | Atlas Analytics Lab -- Publications. |
| permalink | /publications/ |
{% assign all_publications = site.data.publications | default: empty | compact %} {% assign published_entries = all_publications | where: 'status', 'published' %} {% assign under_review_entries = all_publications | where: 'status', 'under_review' %}
{% if published_entries.size > 0 %}
{%- assign published_years = published_entries | map: 'year' | compact | uniq | sort | reverse -%}
{%- for y in published_years -%}
{% endif %}
{%- comment -%}
Keep file order within each year so newer items stay on top.
{%- endcomment -%}
{%- assign items_for_year = published_entries | where: 'year', y -%}
{%- for entry in items_for_year -%}
{%- include publication-item.html entry=entry -%}
{%- endfor -%}
{%- endfor -%}
{% if under_review_entries.size > 0 %}
{%- assign review_years = under_review_entries | map: 'year' | compact | uniq | sort | reverse -%}
{%- for y in review_years -%}
{% endif %}
{%- assign items_for_year = under_review_entries | where: 'year', y -%}
{%- for entry in items_for_year -%}
{%- include publication-item.html entry=entry -%}
{%- endfor -%}
{%- endfor -%}