_layouts/author-archive.html
---
layout: default
---
<div class="page">
{% include full-author.html %}
<ul class="groups-list groups-list--3-col">
{% assign postsInYear = site.posts | where_exp: "item", "item.is_rss_only != true" | where: 'author', page.author | group_by_exp: "post",
"post.date | date: '%Y'" %}
{% for year in postsInYear %}
<li>
<a href="#{{ year.name }}">
{{ year.name }}
<span>{{ year.items | size }}</span>
</a>
</li>
{% endfor %}
</ul>
{% assign postsByYear = site.posts | where_exp: "item", "item.is_rss_only != true" | where: 'author', page.author | group_by_exp:"post", "post.date
| date: '%Y'" %}
{% for year in postsByYear %}
<section class="group-section" id="{{ year.name }}">
<h2 class="group__name">{{ year.name }}<small class="group__count">{{ year.items | size }}</small></h2>
<ul class="group__post-list group__post-list--2-col">
{% for post in year.items %}
<li class="group-post__item group-post__item--bold">
<a href="{{ post.url }}">{{ post.title | caps }} {% if post.review.type %}{% include star-rating.html rating=post.review.rating %}{% endif %}</a><span class="group-post__meta-info">{{ post.date | date: '%a, %b %d'}}</span>
</li>
{% endfor %}
</ul>
<a href="#page-title" class="group__return-home">Back to Top ↑</a>
</section>
{% endfor %}
</div>