Skip to content

Commit e12ee95

Browse files
committed
[docs] Don't make authors links on all posts page
1 parent ccfc2d8 commit e12ee95

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

docs/blog/all.html

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,7 @@ <h1>All Posts</h1>
1111
{% for page in site.posts %}
1212
<p><strong><a href="/react{{ page.url }}">{{ page.title }}</a></strong> on {{ page.date | date: "%B %e, %Y" }} by
1313
{% for author in page.authors %}
14-
{% if author.url %}
15-
<a href="{{author.url}}">{{ author.name }}</a>
16-
{% else %}
17-
{{ author.name }}
18-
{% endif %}
14+
{{ author.name }}
1915
{% if forloop.last == false %} and {% endif %}
2016
{% endfor %}
2117
</p>

0 commit comments

Comments
 (0)