+ {{ if .Params.bookmarkOf }}
+
{{ partial "bookmark-of.html" . }}
+ {{ end }}
{{ .Content }}
diff --git a/layouts/notes/list.html b/layouts/notes/list.html
new file mode 100644
index 00000000..e9a5d48a
--- /dev/null
+++ b/layouts/notes/list.html
@@ -0,0 +1,32 @@
+{{ define "main" }}
+ {{ $paginator := .Paginate .Data.Pages }}
+
+ {{/* Ignore entirely from search, as we want to index the individual notes, not this stream */}}
+
+ {{ partial "generic-list-header.html" . }}
+
+
+
+ {{ partial "alternates.html" . }}
+
+
+ {{ if .Content }}
+ {{ .Content }}
+ {{ end }}
+
+
+
+ {{ range $paginator.Pages }}
+
+
+ {{ .Content }}
+
+
+ {{ end }}
+
+ {{ partial "pagination-list.html" . }}
+
+{{ end }}
diff --git a/layouts/partials/bookmark-of.html b/layouts/partials/bookmark-of.html
new file mode 100644
index 00000000..7f6ce942
--- /dev/null
+++ b/layouts/partials/bookmark-of.html
@@ -0,0 +1,17 @@
+{{ if not .Params.bookmarkOf}}
+ {{ errorf "BookmarkOf partial called when no bookmark of param set" }}
+{{ end }}
+
+{{ $url := .Params.bookmarkOf }}
+{{ $reference := dict }}
+{{ range .Params.references }}
+ {{ if eq .url $url }}
+ {{ $reference = . }}
+ {{ end }}
+{{ end }}
+💠Thoughts on{{" "}}
+{{- with $reference.name -}}
+ the article