diff options
Diffstat (limited to '_layouts/author.html')
-rw-r--r-- | _layouts/author.html | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/_layouts/author.html b/_layouts/author.html index 7c5cddc..44e62e5 100644 --- a/_layouts/author.html +++ b/_layouts/author.html @@ -11,14 +11,9 @@ layout: default <h2>objave:</h2> <ul> - {% assign filtered_posts = site.posts | where: "author", page.short_name %} - {% assign author_not_specified = site.posts | where: 'author', nil %} - {% if page.short_name == "anonymous" %} - {% assign filtered_posts = - author_not_specified | concat: filtered_posts %} - {% endif %} - {% assign filtered_posts = filtered_posts | sort: "date" | reverse %} - {% for post in filtered_posts %} + {% assign argv = page.short_name | split: "," %} + {% include posts_by_author.html %} + {% for post in return %} <li> <a href="{{ post.url | remove: ".html" }}"> {{ post.title }} @ {{ post.date | date: site.short_date_format }} |