layout | title |
---|---|
default |
People |
{% for a in site.authors do %} {% assign adata = a[0] %} {% assign thisauthor = site.authors[adata] %}
{% if thisauthor.prof == true %}
{{ 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 %}
{% for a in site.authors do %} {% assign adata = a[0] %} {% assign thisauthor = site.authors[adata] %}
{% if thisauthor.prof != true %}
{{ 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 %}