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

Notes

Short, linkable thoughts. Each note has its own permalink.

{% set items = items | default([]) %} {% if (items | length) == 0 %}

No notes yet. Add files under src/notes/.

{% else %}
{% for item in items %}

{{ item.data.title or 'Untitled' }}

{% if item.date %} {% endif %} {% if item.data.description %}

{{ item.data.description }}

{% endif %}
{% endfor %}
{% endif %}