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

Notes

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

Short thoughts, updates, and quick posts. ({{ collections.notes.length }} total)

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