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

Notes

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

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

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