rss-club.html
---
title: RSS Club Archive
layout: default
custom_css_class: rss-club-archive
exclude_from_search: true
---
<div class="page">
<header class="page__header page__header--full">
<h1 class="page-header__title" id="page-title">{{ page.title }}</h1>
<p class="page-header__description">The complete archive of <span class="caps">RSS</span> Club posts. <a href="/2018/01/rss-club/">Read this article</a> to learn what <span class="caps">RSS</span> Club is. If you somehow found this page, and aren’t already a member, <a href="/subscribe/">join the club</a>.</p>
</header>
<ul class="groups-list groups-list--3-col">
{% assign postsInYear = site.posts | where_exp: "item", "item.is_rss_only == true" | 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" | 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 }}">
<span class="group-post__meta-info">{{ post.date | date: '%a, %b %d'}}</span>
{{ post.title | caps }}
</a>
</li>
{% endfor %}
</ul>
<a href="#page-title" class="group__return-home">Back to Top ↑</a>
</section>
{% endfor %}
</div>