fix on display of post authors
This commit is contained in:
parent
1de691a02a
commit
048bf7d9b5
1 changed files with 5 additions and 1 deletions
|
@ -27,7 +27,11 @@ layout: default
|
|||
{% include meta_info.html %}
|
||||
{% endunless %}
|
||||
{% if page.authors %}
|
||||
<div class="authors">Par {{ page.authors }}</div>
|
||||
<div class="authors">Par
|
||||
{% for author in page.authors %}
|
||||
{{ author }}{% unless forloop.last %}, {% endunless %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{{ content }}
|
||||
|
|
Loading…
Reference in a new issue