ARTICLE_AUTHORS -> HIDE_AUTHORS

This commit is contained in:
Raymond Wanyoike 2016-11-12 15:21:48 +03:00
commit d7b535dc95
3 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@ All Articles
<div>
<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
</div>
{% if article.authors and ARTICLE_AUTHORS %}
{% if not HIDE_AUTHORS and article.authors %}
<div>
{% for author in article.authors %}
<a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>{% if not loop.last %}, {% endif %}