Skip to content

Latest commit

 

History

History
78 lines (68 loc) · 2.68 KB

File metadata and controls

78 lines (68 loc) · 2.68 KB
title Atlas Analytics Lab - Publications
layout gridlay
excerpt Atlas Analytics Lab -- Publications.
permalink /publications/

List of 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 %}

Published

{%- assign published_years = published_entries | map: 'year' | compact | uniq | sort | reverse -%} {%- for y in published_years -%}

{{ y }}

{%- 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 -%}
{% endif %}

{% if under_review_entries.size > 0 %}

Under Review / Under Revision

{%- assign review_years = under_review_entries | map: 'year' | compact | uniq | sort | reverse -%} {%- for y in review_years -%}

{{ y }}

{%- assign items_for_year = under_review_entries | where: 'year', y -%} {%- for entry in items_for_year -%} {%- include publication-item.html entry=entry -%} {%- endfor -%}
{%- endfor -%}
{% endif %}