Add author pages
bluenex opened this issue · 1 comments
bluenex commented
In case reader want to look for the article written by specified author. I've tested looping through site.data.authors but it doesn't seem to work well.
{% for item_hash in site.data.authors %}
{% for item in item_hash %}
<li>{{ item[0] }}</li>
<li>{{ item[1] }}</li>
{% endfor %}
{% endfor %}
This doesn't work either.