{% if authors %}
{% if authors.size == 1 %}
{{ site.data.locales[site.lang].post.written_by.singular }}
{% else %}
{{ site.data.locales[site.lang].post.written_by.plural | default: site.data.locales[site.lang].post.written_by.singular }}
{% endif %}
{% for author in authors %}
{% if site.data.authors[author].url and site.data.authors[author].url contains 'http' %}
{% assign _url = site.data.authors[author].url %}
{% else %}
{% assign _url = site.baseurl | append: site.data.authors[author].url %}
{% endif %}
{{ site.data.authors[author].name }}
{% unless forloop.last %}, {% endunless %}
{% endfor %}
{% endif %}