Here's an Atom Feed if you want to subscribe
{% for post in site.tags.pinned %}
-
{{ post.title }}
{{ post.date | date_to_string }}
{% endfor %}
Common Tags
{% for tag in site.data.common-tags %}
{{ tag.name }}
{% endfor %}
All Posts
{% assign postsByYear = site.posts | group_by_exp:"post", "post.date | date: '%Y'" %}
{% for year in postsByYear %}
{{ year.name }}'s posts
{% assign postsByMonth = year.items | group_by_exp:"post", "post.date | date: '%B'" %}
{% for month in postsByMonth %}
{{ month.name }}
{% for post in month.items %}
{% if post.hidden != true %}
-
{{ post.title }}{{ post.date | date_to_string }}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}