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/_default/baseof.html | 11 ++++------- layouts/_default/taxonomy.html | 7 +++++++ 2 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 layouts/_default/taxonomy.html (limited to 'layouts/_default') diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 93eb168..19128ec 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -3,17 +3,14 @@ + {{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }} - + - + {{partial "header.html"}}
{{ block "main" . }}{{ end }}
- + \ No newline at end of file diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html new file mode 100644 index 0000000..c2e7875 --- /dev/null +++ b/layouts/_default/taxonomy.html @@ -0,0 +1,7 @@ +{{ define "main" }} +

{{ .Title }}

+ {{ .Content }} + {{ range .Pages }} +

{{ .LinkTitle }}

+ {{ end }} +{{ end }} -- cgit v1.3.1