Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.44 KB

people.markdown

File metadata and controls

51 lines (38 loc) · 1.44 KB
layout title
default
People

{{ site.course.title }} Instructors

{% for a in site.authors do %} {% assign adata = a[0] %} {% assign thisauthor = site.authors[adata] %}

{% if thisauthor.prof == true %}

{{ thisauthor.name }}

{{ thisauthor.about }} Find {{ thisauthor.name }} on Twitter, Github, and on the web.

    {% for p in site.posts do %} {% for authors in p.author %} {% if authors == adata %}
  • => {{p.title}} - {{ p.date | date_to_string }}
  • {% endif %} {% endfor %} {% endfor %}

{% endif %} {% endfor %}

{{ site.course.title }} Participants

{% for a in site.authors do %} {% assign adata = a[0] %} {% assign thisauthor = site.authors[adata] %}

{% if thisauthor.prof != true %}

{{ thisauthor.name }}

{{ thisauthor.about }} Find {{ thisauthor.name }} on Twitter, Github, and on the web.

{% for p in site.posts do %}
  {% for authors in p.author %}
  {% if authors == adata %}
  • [{{ p.title }}]({{ site.baseurl }}{{p.url}}) {% endif %} {% endfor %} {% endfor %} {% endif %} {% endfor %}