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

Likes

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

Content I've liked across the web. ({{ collections.likes.length }} total)

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