Skip to content

Latest commit

 

History

History
36 lines (33 loc) · 1.02 KB

authors.md

File metadata and controls

36 lines (33 loc) · 1.02 KB
layout title hidden
page
Authors
true

Sort by date, tag

{% assign post_list = site.categories.writeup %} {% assign authors = (site.authors | sort:0) %}

{% for author in authors %} {% assign id = author[0] %} {% assign info = author[1] %}

Write-ups by {{ info.display_name | default: id }}

{% if info %}

{% if info.web %} Personal Website: {{ info.web }}
{% endif %} {% if info.twitter %} on Twitter
{% endif %} {% if info.github %} on Github
{% endif %}

{% endif %}
    {% for post in post_list %} {% if post.author contains id %}
  • {{ post.title }}
  • {% endif %} {% endfor %}
{% endfor %}