[docs] Don't make authors links on all posts page

(cherry picked from commit e12ee95e09)
This commit is contained in:
Paul O’Shannessy
2015-10-19 10:30:28 -07:00
parent bed6aefc46
commit 348a37cc99
+1 -5
View File
@@ -11,11 +11,7 @@ id: all-posts
{% for page in site.posts %}
<p><strong><a href="/react{{ page.url }}">{{ page.title }}</a></strong> on {{ page.date | date: "%B %e, %Y" }} by
{% for author in page.authors %}
{% if author.url %}
<a href="{{author.url}}">{{ author.name }}</a>
{% else %}
{{ author.name }}
{% endif %}
{{ author.name }}
{% if forloop.last == false %} and {% endif %}
{% endfor %}
</p>