From b704b0530da0a02611622448211ba86ffd9fc5ba Mon Sep 17 00:00:00 2001 From: Dylan Lloyd Date: Sat, 4 Feb 2023 10:44:08 -0500 Subject: [PATCH] add notes index --- notes/index.html | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 notes/index.html diff --git a/notes/index.html b/notes/index.html new file mode 100644 index 0000000..b2452e4 --- /dev/null +++ b/notes/index.html @@ -0,0 +1,34 @@ +--- +layout: note +--- + +{% for page in paginator.posts %} +
+
+
+ + {{ page.date | date: '%Y-%m-%d' }} + / + + + {{ page.title }} + + +
+ {{ page.content }} +
+
+{% endfor %} + +{% if paginator.previous_page %} + + previous + +{% endif %} +{% if paginator.next_page_path %} + +{% endif %} -- 2.30.2