From 01a2f10cfa100996e18e52f245f0be2baf545a00 Mon Sep 17 00:00:00 2001 From: frosty Date: Tue, 16 Sep 2025 18:18:10 -0400 Subject: initial commit --- layouts/partials/all-posts.html | 7 +++++++ layouts/partials/footer.html | 4 ++++ layouts/partials/header.html | 11 +++++++++++ 3 files changed, 22 insertions(+) create mode 100644 layouts/partials/all-posts.html create mode 100644 layouts/partials/footer.html create mode 100644 layouts/partials/header.html (limited to 'layouts/partials') diff --git a/layouts/partials/all-posts.html b/layouts/partials/all-posts.html new file mode 100644 index 0000000..77d8a18 --- /dev/null +++ b/layouts/partials/all-posts.html @@ -0,0 +1,7 @@ +{{ range $index, $page := where .Site.RegularPages "Section" "blog" }} +
+ {{ $page.Date.Format "January 2, 2006" }} +
+ {{ $page.Title }} +
+{{ end }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..83b6ab0 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,4 @@ +
+

Thank you for taking interest in my website. The writing is under CC0 and the code is under the Unlicense. Be kind.

+ + diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..dbc52c5 --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,11 @@ +
+ + +
-- cgit v1.2.3