Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 695 Bytes

resources.md

File metadata and controls

33 lines (26 loc) · 695 Bytes
title permalink
Reference
/resources/

{% assign reference_types = "scientists|students|discussion|author" | split: "|" %}

{% for type in reference_types %}

{% if type == 'scientists' %}

For scientists

{% elsif type == 'students' %}

For students, lab members, author

{% elsif type == 'discussion' %}

Random bits of discussion

{% endif %}

{% for post in site.posts %} {% if post.categories contains type %} {% endif %} {% endfor %}

{% endfor %}