Skip to content

Latest commit

 

History

History
55 lines (48 loc) · 1.22 KB

funders.md

File metadata and controls

55 lines (48 loc) · 1.22 KB
layout title
page
Grants by Funder

{% comment %} Code adapted from https://codinfox.github.io/dev/2015/03/06/use-tags-and-categories-in-your-jekyll-based-github-pages/ {% endcomment %}

{% comment %}

Collect and sort funders and display tags

{% endcomment %}

{% assign funders = "" %} {% for grant in site.grants %} {% assign funder = grant.funder | join:'|' | append:'|' %} {% unless funders contains funder %} {% assign funders = funders | append:funder %} {% endunless %} {% endfor %} {% assign funders = funders | split:'|' | sort %}

{% for funder in funders %} {{ funder }} {% endfor %}

{% comment %}

List all grants by funder

{% endcomment %}

{% for funder in funders %}

{{ funder }}

    {% for grant in site.grants %} {% if grant.funder == funder %}
  • {{ grant.title }} {{ grant.author }}, {{ grant.year }}, {{ grant.status }}
  • {% endif %} {% endfor %}
{% endfor %}