Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.01 KB

File metadata and controls

46 lines (37 loc) · 1.01 KB
title Reference
permalink /resources/

{% assign reference_types = "researchers|students" | split: "|" %}

{% for type in reference_types %}

{% if type == 'researchers' %}

For researchers

{% elsif type == 'students' %}

For students and lab members

{% endif %}

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

{% endfor %}

Useful Blog posts from Kording Lab

{% for post in site.posts %} {% if post.categories contains 'kording' %}

- {{ post.title }} ({{post.date | date: "%m/%d/%y" }})

{% endif %} {% endfor %}