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

Bookmarks

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

Links I've saved for later. ({{ collections.bookmarks.length }} total)

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