diff --git a/src/changelog.md b/src/changelog.md
index db694d9..ddaf9dd 100644
--- a/src/changelog.md
+++ b/src/changelog.md
@@ -31,7 +31,9 @@ This is a list of changes to my website, organized by date.
### Done
-- Settled on `/entry/YYYY/MM/DD/slug` for journal permalinks
+- Permalinks
+ - Journal entries: `/entry/YYYY/MM/DD/slug`
+ - Notes: `/note/YYYY-MM-DD[a-z]`
- Added favicon
- Paginated category and tag pages (not enough content to have pages but it works, trust me)
diff --git a/src/updates.njk b/src/notes.njk
similarity index 61%
rename from src/updates.njk
rename to src/notes.njk
index 8d58302..e067185 100644
--- a/src/updates.njk
+++ b/src/notes.njk
@@ -1,19 +1,18 @@
---
layout: single
-permalink: "/note/{{ update.date | formatDateIso('yyyy-MM-dd') }}{{ update.slug }}/index.html"
+permalink: "/note/{{ note.date | formatDateIso('yyyy-MM-dd') }}{{ note.slug }}/index.html"
pagination:
- data: updates
+ data: notes
size: 1
- alias: update
+ alias: note
title: "Note"
---
-{{ update.content | safe }}
+{{ note.content | safe }}
{% if pagination.href.previous or pagination.href.next %}
{% if pagination.href.previous %}