--- layout: layouts/base.njk title: Replies withSidebar: true pagination: data: collections.replies size: 20 alias: paginatedReplies generatePageOnEmptyData: true permalink: "replies/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumber + 1 }}/{% endif %}" ---

Replies

{% set sparklineSvg = collections.replies | postingFrequency %} {% if sparklineSvg %}
{{ sparklineSvg | safe }}
{% endif %}

My responses to posts across the web. ({{ collections.replies.length }} total)

{% if paginatedReplies.length > 0 %} {# Pagination controls #} {% if pagination.pages.length > 1 %} {% endif %} {% else %} {% set postType = "reply" %} {% include "components/empty-collection.njk" %} {% endif %}