From 06b7acc14eb27b1d079312d8530baa220ccac179 Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Sun, 11 Feb 2024 19:46:21 +0100 Subject: Use default base of template --- layouts/_default/baseof.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 layouts/_default/baseof.html (limited to 'layouts/_default/baseof.html') diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..95267c6 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,24 @@ + + + + {{ .Site.Title }} | {{ .Title }} + {{ $web := resources.Get "scss/web.scss" }} + {{ $style := $web | toCSS | minify | fingerprint }} + + {{ $print := resources.Get "scss/print.scss" }} + {{ $style := $print | toCSS | minify | fingerprint }} + + {{ partial "head/metadata" .Site.Data.home.index.Meta }} + + +
+ {{ block "main" . }} + {{ end }} +
+ + + + -- cgit v1.2.3