From d38fc83df3824b840f0b3930e4cb7236bdab84b2 Mon Sep 17 00:00:00 2001 From: a73x Date: Tue, 27 Aug 2024 19:43:56 +0100 Subject: feat(content): support templating in content this is tired person code don't write tired person code --- templates/layouts/_default.html | 75 +++++++++++++++++++++++++++++++++++++++++ templates/layouts/default.html | 75 ----------------------------------------- 2 files changed, 75 insertions(+), 75 deletions(-) create mode 100644 templates/layouts/_default.html delete mode 100644 templates/layouts/default.html (limited to 'templates/layouts') diff --git a/templates/layouts/_default.html b/templates/layouts/_default.html new file mode 100644 index 0000000..beab01e --- /dev/null +++ b/templates/layouts/_default.html @@ -0,0 +1,75 @@ +{{define "base"}} + + + + + + + + + a73x + + + + +

a73x

+ high effort, low reward + + {{ template "content" . }} + + + + +{{end}} \ No newline at end of file diff --git a/templates/layouts/default.html b/templates/layouts/default.html deleted file mode 100644 index 14868cf..0000000 --- a/templates/layouts/default.html +++ /dev/null @@ -1,75 +0,0 @@ -{{define "base"}} - - - - - - - - - a73x - - - - -

a73x

- high effort, low reward - - {{ template "content" . }} - - - - -{{end}} \ No newline at end of file -- cgit v1.2.3