From 583c01de122be399dcbf200ccc3f8bb8687c2cd1 Mon Sep 17 00:00:00 2001 From: Karan Jayachandra Date: Fri, 26 Sep 2025 17:40:43 +0200 Subject: Added the changes that allow for blogging --- layouts/posts/page.html | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 layouts/posts/page.html (limited to 'layouts/posts/page.html') diff --git a/layouts/posts/page.html b/layouts/posts/page.html new file mode 100644 index 0000000..dd21496 --- /dev/null +++ b/layouts/posts/page.html @@ -0,0 +1,7 @@ +{{ define "main" }} +

{{ .Title }}

+ {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} + {{ $dateHuman := .Date | time.Format "2006-01-02" }} + + {{ .Content }} +{{ end }} -- cgit v1.3.1