layout | title | hidden |
---|---|---|
page |
Authors |
true |
{% assign post_list = site.categories.writeup %} {% assign authors = (site.authors | sort:0) %}
{% for author in authors %} {% assign id = author[0] %} {% assign info = author[1] %}
{% if info %}
{% if info.web %}
Personal Website: {{ info.web }}
{% endif %}
{% if info.twitter %}
on Twitter
{% endif %}
{% if info.github %}
on Github
{% endif %}
-
{% for post in post_list %}
{% if post.author contains id %}
- {{ post.title }} {% endif %} {% endfor %}